The definitive self-hosted URL shortener
Find a file
2024-10-04 12:48:19 +02:00
.github Improve repro steps description in bug issue template 2024-07-28 10:49:24 +02:00
bin Add --testdox-summary flag to phpunit executions 2024-08-04 13:13:03 +02:00
config Update changelog 2024-10-04 12:41:02 +02:00
data Allow memory_limit to be configurable 2024-04-09 08:47:01 +02:00
docker Allow memory_limit to be configurable 2024-04-09 08:47:01 +02:00
docs Add ip-address condition type to redirect rules API spec docs 2024-07-17 20:23:58 +02:00
module Take all Postgres platform classes into consideration 2024-08-26 09:57:17 +02:00
public Optimise RewriteRules/Conds 2022-02-10 21:31:45 +01:00
.dockerignore Remove dependency on infection and mutation tests 2024-02-20 22:20:16 +01:00
.gitattributes Replaced scrutinizer with codecov 2020-12-19 10:25:19 +01:00
.gitignore Move E2E coverage collectors to shlink-test-utils 2024-02-16 23:25:42 +01:00
.phpstorm.meta.php Project migrated from zend to laminas 2020-01-01 21:13:09 +01:00
build.sh Removed deprecated features 2024-02-12 23:18:30 +01:00
CHANGELOG.md Update changelog 2024-10-04 12:41:02 +02:00
composer.json Require shlink-common 6.3 2024-10-04 12:48:19 +02:00
CONTRIBUTING.md Remove dependency on infection and mutation tests 2024-02-20 22:20:16 +01:00
docker-compose.ci.yml Update to RoadRunner 2024 2024-07-03 19:52:06 +02:00
docker-compose.override.yml.dist Update to RoadRunner 2024 2024-07-03 19:52:06 +02:00
docker-compose.yml Update to latest shlink-common and remove deprecation references 2024-07-29 19:41:40 +02:00
Dockerfile Drop support for openswoole 2024-02-16 23:02:46 +01:00
indocker Drop support for openswoole 2024-02-16 23:02:46 +01:00
LICENSE Create endpoint to list redirect rules for a specific short URL 2024-02-27 21:00:53 +01:00
phpcs.xml Move migrations to module/Core 2024-01-02 17:55:23 +01:00
phpstan.neon Improve PHPStan config 2024-07-31 19:53:05 +02:00
phpunit-api.xml Update phpunit configs to fulfil v10.1 2023-04-14 09:44:01 +02:00
phpunit-cli.xml Update phpunit configs to fulfil v10.1 2023-04-14 09:44:01 +02:00
phpunit-db.xml Track orphan visits counts 2024-04-01 10:22:51 +02:00
phpunit.xml.dist Track orphan visits counts 2024-04-01 10:22:51 +02:00
README.md Fix donate URL 2024-02-20 22:33:10 +01:00
UPGRADE.md Small reword in UPGRADE guide 2024-03-03 19:16:46 +01:00

Shlink

Build Status Code Coverage Latest Stable Version Docker pulls License

Mastodon Bluesky Twitter Paypal donate

A PHP-based self-hosted URL shortener that can be used to serve shortened URLs under your own domain.

Table of Contents

Full documentation

This document contains the very basics to get started with Shlink. If you want to learn everything you can do with it, visit the full searchable documentation.

Docker image

You can learn how to use the official docker image by reading the docs.

The idea is that you can just generate a container using the image and provide the custom config via env vars.

Self-hosted

First, make sure the host where you are going to run shlink fulfills these requirements:

  • PHP 8.2 or 8.3
  • The next PHP extensions: json, curl, pdo, intl, gd and gmp/bcmath.
    • apcu extension is recommended if you don't plan to use RoadRunner.
    • xml extension is required if you want to generate QR codes in svg format.
    • sockets and bcmath extensions are required if you want to integrate with a RabbitMQ instance.
  • MySQL, MariaDB, PostgreSQL, MicrosoftSQL or SQLite.
    • You will also need the corresponding pdo variation for the database you are planning to use: pdo_mysql, pdo_pgsql, pdo_sqlsrv or pdo_sqlite.

Download

In order to run Shlink, you will need a built version of the project. There are two ways to get it.

  • Using a dist file

    The easiest way to install shlink is by using one of the pre-bundled distributable packages.

    Go to the latest version and download the shlink*_dist.zip file that suits your needs. You will find one for every supported PHP version.

    Finally, decompress the file in the location of your choice.

  • Building from sources

    If for any reason you want to build the project yourself, follow these steps:

    • Clone the project with git (git clone https://github.com/shlinkio/shlink.git), or download it by clicking the Clone or download green button.
    • Download the Composer PHP package manager inside the project folder.
    • Run ./build.sh 3.0.0, replacing the version with the version number you are going to build (the version number is used as part of the generated dist file name, and to set the value returned when running shlink -V from the command line).

    After that, you will have a dist file inside the build directory, that you need to decompress in the location of your choice.

    Note

    This is the process used when releasing new Shlink versions. After tagging the new version with git, the GitHub release is automatically created by a GitHub workflow, attaching the generated dist file to it.

Configure

Despite how you built the project, you now need to configure it, by following these steps:

  • If you are going to use MySQL, MariaDB, PostgreSQL or Microsoft SQL Server, create an empty database with the name of your choice.
  • Recursively grant write permissions to the data directory. Shlink uses it to cache some information.
  • Set up the application by running the vendor/bin/shlink-installer install script. It is a command line tool that will guide you through the installation process. Take into account that this tool has to be run directly on the server where you plan to host Shlink. Do not run it before uploading/moving it there.
  • Generate your first API key by running bin/cli api-key:generate. You will need the key in order to interact with Shlink's API.

Once shlink is installed, there are two main ways to interact with it:

  • The command line: Try running bin/cli to see all the available commands.

    All of them can be run with the --help/-h flag in order to see how to use them and all the available options.

    It is probably a good idea to symlink the CLI entry point (bin/cli) to somewhere in your path, so that you can run shlink from any directory.

  • The REST API: The complete docs on how to use the API can be found here, and a sandbox which also documents every endpoint can be found in the API Spec portal.

    However, you probably don't want to consume the raw API yourself. That's why a nice web client is provided that can be directly used from https://app.shlink.io, or hosted by yourself.

Both the API and CLI allow you to do mostly the same operations, except for API key management, which can be done from the command line interface only.

Contributing

If you are trying to find out how to run the project in development mode or how to provide contributions, read the CONTRIBUTING doc.


This product includes GeoLite2 data created by MaxMind, available from https://www.maxmind.com