2016-06-18 13:23:12 +02:00
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
listen [::]:80;
|
|
|
|
|
|
|
|
server_name {{ racktables_domain }};
|
|
|
|
|
2016-06-18 14:44:59 +02:00
|
|
|
root /opt/racktables/wwwroot;
|
2016-06-18 13:23:12 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|