This repository has been archived on 2021-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
docker-cachethq/rootfs/nginx/sites-enabled/cachet.conf
2017-11-03 19:28:35 +00:00

17 lines
375 B
Plaintext

server {
listen 8080;
root /cachetHQ/public;
index index.php;
location / {
try_files $uri /index.php$is_args$args;
}
location ~ \.php$ {
fastcgi_index index.php;
fastcgi_pass unix:/php/run/php-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /nginx/conf/fastcgi_params;
}
}