shlink/data/infra/examples/apache-vhost.conf
2023-01-19 09:05:52 +01:00

12 lines
279 B
Plaintext

<VirtualHost *:80>
ServerName s.test
DocumentRoot "/path/to/shlink/public"
<Directory "/path/to/shlink/public">
Options FollowSymLinks Includes ExecCGI
AllowOverride all
Order allow,deny
Allow from all
</Directory>
</VirtualHost>