The definitive self-hosted URL shortener
Find a file
2022-01-05 14:10:24 +01:00
.github Added missing 8.1 to clean-artifacts job in publish-release pipeline 2021-12-12 17:45:56 +01:00
bin Updated logic to handle visits threshold env var so that it is disabled if not provided 2021-12-18 18:18:30 +01:00
config Simplified some match expressions 2022-01-01 18:40:48 +01:00
data Removed gmp extension as bcmath does the same 2022-01-03 19:10:58 +01:00
docker Reduced docker image size by ensuring dev native libs are not included in final image 2022-01-03 18:48:08 +01:00
docs Documented tagsMode param for short URLs list 2022-01-04 12:22:36 +01:00
module Changed default ordering of short URLs, returning newest first 2022-01-05 14:10:24 +01:00
public Added phpstan-symfony plugin to improve inspections on getArgument and getOption 2021-07-19 20:00:53 +02:00
.dockerignore Removed gmp extension as bcmath does the same 2022-01-03 19:10:58 +01:00
.gitattributes Replaced scrutinizer with codecov 2020-12-19 10:25:19 +01:00
.gitignore Added swagger validation to CI pipeline 2021-12-09 18:51:26 +01:00
.phpstorm.meta.php Project migrated from zend to laminas 2020-01-01 21:13:09 +01:00
build.sh Removed everything that was deprecated 2021-12-14 22:21:53 +01:00
CHANGELOG.md Changed default ordering of short URLs, returning newest first 2022-01-05 14:10:24 +01:00
composer.json Updated installer 2022-01-01 18:43:41 +01:00
CONTRIBUTING.md Update CONTRIBUTING.md 2021-06-13 22:24:20 +08:00
docker-compose.ci.yml Unified jobs in ci pipeline as much as possible 2021-12-11 10:26:23 +01:00
docker-compose.override.yml.dist Unified jobs in ci pipeline as much as possible 2021-12-11 10:26:23 +01:00
docker-compose.yml Added dev container with RabbitMQ 2021-12-11 16:19:38 +01:00
Dockerfile Slightly reduced docker image size by merging mssql and openswoole installation steps 2022-01-03 19:34:36 +01:00
indocker Removed custom AccessLogFactory by updating to zend-expressive-swoole 2.2 2018-12-05 21:26:19 +01:00
infection-api.json Added mutations to API tests 2021-12-10 17:45:55 +01:00
infection-db.json Applied API role specs to single short URL edition 2021-01-03 16:41:44 +01:00
infection.json Added mutation score badge 2021-12-05 08:55:05 +01:00
LICENSE Updated year in license 2021-02-13 09:38:34 +01:00
migrations.php Removed commented migrations option 2020-06-23 19:23:33 +02:00
phpcs.xml Added all docker stuff to the project 2019-08-16 18:38:26 +02:00
phpstan.neon Replaced tabs by spaces in phpstan.neon config 2021-12-08 17:52:17 +01:00
phpunit-api.xml Added mutations to API tests 2021-12-10 17:45:55 +01:00
phpunit-db.xml Updated link to PHPUnit's xsd to use local one 2021-01-24 22:56:43 +01:00
phpunit.xml.dist Updated link to PHPUnit's xsd to use local one 2021-01-24 22:56:43 +01:00
README.md Renamed Rabbit instances to use RabbitMq 2021-12-12 10:32:57 +01:00
UPGRADE.md Changed default ordering of short URLs, returning newest first 2022-01-05 14:10:24 +01:00

Shlink

Build Status Code Coverage Infection MSI Latest Stable Version Docker pulls License Paypal donate

A PHP-based self-hosted URL shortener that can be used to serve shortened URLs under your own custom 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

Starting with version 1.15.0, an official docker image is provided. You can learn how to use it 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.0 or 8.1
  • The next PHP extensions: json, curl, pdo, intl, gd and gmp.
    • apcu extension is recommended if you don't plan to use swoole or openswoole.
    • 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, Microsoft SQL Server or SQLite.
  • The web server of your choice with PHP integration (Apache or Nginx recommended).

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 and with/without swoole/openswoole integration.

    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 1.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.

    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.
  • Setup the application by running the bin/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 and see all the available commands.

    All of those commands 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 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