ansible/roles/racktables/templates/vhost.j2

20 lines
426 B
Plaintext
Raw Normal View History

server {
listen 80;
listen [::]:80;
server_name {{ racktables_domain }};
2016-06-18 14:44:59 +02:00
root /opt/racktables/wwwroot;
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/php/php7.0-fpm.sock;
fastcgi_intercept_errors on;
}
}