20 lines
416 B
Plaintext
20 lines
416 B
Plaintext
|
server {
|
||
|
listen 80;
|
||
|
listen [::]:80;
|
||
|
|
||
|
server_name {{ racktables_domain }};
|
||
|
|
||
|
root /var/www/racktables;
|
||
|
|
||
|
index index.php;
|
||
|
|
||
|
location ~ \.php(?:$|/) {
|
||
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||
|
include fastcgi_params;
|
||
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||
|
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
||
|
fastcgi_intercept_errors on;
|
||
|
}
|
||
|
}
|