1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-19 15:11:40 +02:00

Adds a missing semi-colon to the nginx configuration

Without it nginx fails to restart
This commit is contained in:
Julien 2016-05-18 15:49:31 +02:00
parent 0c167cb239
commit 96a3ed1190

View File

@ -131,7 +131,7 @@ server {
fastcgi_pass php;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTP_HOST $server_name
fastcgi_param HTTP_HOST $server_name;
}
}