The definitive self-hosted URL shortener
Find a file
2018-11-24 13:11:26 +01:00
bin Updated config so that shlink logger dynamically uses standard output when running with swoole 2018-11-24 09:38:00 +01:00
config Created middleware which closes DB connection after every request 2018-11-24 12:55:00 +01:00
data Prepared project to support both swoole and regular app servers with fast cgi 2018-11-24 08:43:48 +01:00
docs/swagger Updated swagger response schemas and added missing response examples 2018-11-16 16:58:21 +01:00
module Created middleware which closes DB connection after every request 2018-11-24 12:55:00 +01:00
public Updated config so that shlink logger dynamically uses standard output when running with swoole 2018-11-24 09:38:00 +01:00
.env.dist Removed rest auth env vars 2016-08-07 20:47:43 +02:00
.gitattributes Added phpstan config file to export-ignore list 2017-12-30 21:39:18 +01:00
.gitignore Migrated to GeoLite2 for IP location resolution 2018-11-11 21:28:42 +01:00
.phpstorm.meta.php Moved command and app creation logic to a factory for install scripts 2017-07-05 18:12:03 +02:00
.scrutinizer.yml Added scrutinizer config to enforce using the new environment 2018-10-28 09:05:20 +01:00
.travis.yml Added swoole extension to travis 2018-11-24 13:11:26 +01:00
build.sh Excluded GeoLite2 db from build process 2018-11-12 21:51:14 +01:00
CHANGELOG.md Added changelog for unreleased changes 2018-11-18 20:20:30 +01:00
composer.json Prepared project to support both swoole and regular app servers with fast cgi 2018-11-24 08:43:48 +01:00
docker-compose.override.yml.dist Prepared project to support both swoole and regular app servers with fast cgi 2018-11-24 08:43:48 +01:00
docker-compose.yml Prepared project to support both swoole and regular app servers with fast cgi 2018-11-24 08:43:48 +01:00
func_tests_bootstrap.php Ensured same testing database is used to generate with entities and to run functional tests 2017-10-23 12:19:28 +02:00
indocker Prepared project to support both swoole and regular app servers with fast cgi 2018-11-24 08:43:48 +01:00
infection.json Increased MSI to 61% 2018-11-17 17:36:22 +01:00
LICENSE Updated date in license 2018-09-09 18:23:36 +02:00
migrations.yml Created migrations to rename camel case columns to snake case 2018-10-20 09:10:27 +02:00
phpcs.xml Updated config so that shlink logger dynamically uses standard output when running with swoole 2018-11-24 09:38:00 +01:00
phpstan.neon Used a lower level on phpstan to avoid errors produced by Symfony 4.1.5 new phpdocs 2018-11-16 16:44:48 +01:00
phpunit-func.xml Implemented EditShortCodeAction 2018-01-07 20:45:05 +01:00
phpunit.xml.dist Fixed non-existing keys not being set with default values in imported config 2018-10-06 09:40:18 +02:00
README.md Added small hint in README 2018-11-17 09:49:44 +01:00

Shlink

Build Status Code Coverage Scrutinizer Code Quality Latest Stable Version License Paypal donate

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

Installation

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

  • PHP 7.1 or greater with JSON, APCu, intl, curl, PDO and gd extensions enabled.
  • MySQL, PostgreSQL or SQLite.
  • The web server of your choice with PHP integration (Apache or Nginx recommended).

Then, you will need a built version of the project. There are a few ways to get it.

  • Using a dist file

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

    Just go to the latest version and download the shlink_X.X.X_dist.zip file you will find there.

    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 only used for the generated dist file).

    After that, you will have a shlink_x.x.x_dist.zip dist file inside the build directory.

    This is the process used when releasing new shlink versions. After tagging the new version with git, the Github release is automatically created by travis, attaching generated dist file to it.

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

  • If you are going to use MySQL or PostgreSQL, 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.

  • Configure the web server of your choice to serve shlink using your short domain.

    For example, assuming your domain is doma.in and shlink is in the /path/to/shlink folder, this would be the basic configuration for Nginx and Apache.

    Nginx:

    server {
        server_name doma.in;
        listen 80;
        root /path/to/shlink/public;
        index index.php;
        charset utf-8;
    
        location / {
            try_files $uri $uri/ /index.php$is_args$args;
        }
    
        location ~ \.php$ {
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
            fastcgi_index index.php;
            include fastcgi.conf;
        }
    
        location ~ /\.ht {
            deny all;
        }
    }
    

    Apache:

    <VirtualHost *:80>
        ServerName doma.in
        DocumentRoot "/path/to/shlink/public"
    
        <Directory "/path/to/shlink/public">
            Options FollowSymLinks Includes ExecCGI
            AllowOverride all
            Order allow,deny
            Allow from all
        </Directory>
    </VirtualHost>
    
  • 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.

  • Finally access to https://app.shlink.io and configure your server to start creating short URLs.

Bonus

There are a couple of time-consuming tasks that shlink expects you to do manually, or at least it is recommended, since it will improve runtime performance.

Those tasks can be performed using shlink's CLI, so it should be easy to schedule them to be run in the background (for example, using cron jobs):

  • Resolve IP address locations: /path/to/shlink/bin/cli visit:process

    If you don't run this command regularly, the stats will say all visits come from unknown locations.

  • Update IP geolocation database: /path/to/shlink/bin/cli visit:update-db

    When shlink is installed it downloads a fresh GeoLite2 db file. Running this command will update this file.

    The file is updated the first Tuesday of every month, so it should be enough running this command the first Wednesday.

  • Generate website previews: /path/to/shlink/bin/cli short-url:process-previews

    Running this will improve the performance of the doma.in/abc123/preview URLs, which return a preview of the site.

Any of those commands accept the -q flag, which makes it not display any output. This is recommended when configuring the commands as cron jobs.

Update to new version

When a new Shlink version is available, you don't need to repeat the entire process yourself. Instead, follow these steps:

  1. Rename your existing Shlink directory to something else (ie. shlink ---> shlink-old)
  2. Download and extract the new version of Shlink, and set the directories name to that of the old version. (ie. shlink)
  3. Run the bin/update script in the new version's directory to migrate your configuration over.

The script will ask you for the location from previous shlink version, and use it in order to import the configuration. It will then update the database and generate some the assets neccessary for Shlink to function.

Right now, it does not import cached info (like website previews), but it will. For now you will need to regenerate them again.

Important! It is recommended that you don't skip any version when using this process. The update gets better on every version, but older versions might make assumptions.

Using a docker image

Currently there's no official docker image, but there's a work in progress alpha version you can find here.

The idea will be that you can just generate a container using the image and provide predefined config files via volumes or CLI arguments, so that you get shlink up and running.

Currently the image does not expose an entry point which let's you interact with shlink's CLI interface, nor allows configuration to be passed.

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

    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 you can host it yourself too.

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.

Usage:
  command [options] [arguments]

Options:
  -h, --help            Display this help message
  -q, --quiet           Do not output any message
  -V, --version         Display this application version
      --ansi            Force ANSI output
      --no-ansi         Disable ANSI output
  -n, --no-interaction  Do not ask any interactive question
  -v|vv|vvv, --verbose  Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug

Available commands:
  help                        Displays help for a command
  list                        Lists commands
 api-key
  api-key:disable             Disables an API key.
  api-key:generate            Generates a new valid API key.
  api-key:list                Lists all the available API keys.
 config
  config:generate-charset     Generates a character set sample just by shuffling the default one, "123456789bcdfghjkmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ". Then it can be set in the SHORTCODE_CHARS environment variable
  config:generate-secret      Generates a random secret string that can be used for JWT token encryption
 short-url
  short-url:delete            [short-code:delete] Deletes a short URL
  short-url:generate          [shortcode:generate|short-code:generate] Generates a short URL for provided long URL and returns it
  short-url:list              [shortcode:list|short-code:list] List all short URLs
  short-url:parse             [shortcode:parse|short-code:parse] Returns the long URL behind a short code
  short-url:process-previews  [shortcode:process-previews|short-code:process-previews] Processes and generates the previews for every URL, improving performance for later web requests.
  short-url:visits            [shortcode:visits|short-code:visits] Returns the detailed visits information for provided short code
 tag
  tag:create                  Creates one or more tags.
  tag:delete                  Deletes one or more tags.
  tag:list                    Lists existing tags.
  tag:rename                  Renames one existing tag.
 visit
  visit:process               Processes visits where location is not set yet
  visit:update-db             Updates the GeoLite2 database file used to geolocate IP addresses

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