You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
913 B
Plaintext
32 lines
913 B
Plaintext
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name {{ domain }};
|
|
|
|
ssl on;
|
|
ssl_certificate {{ acme_certificate_location }};
|
|
ssl_certificate_key {{ acme_key_location }};
|
|
|
|
include {{ nginx_snippets_directory }}/https;
|
|
include {{ nginx_snippets_directory }}/global;
|
|
|
|
index index.php index.html index.htm index.nginx-debian.html;
|
|
root {{ src }};
|
|
fastcgi_hide_header X-Powered-By;
|
|
|
|
location ~\.php$ {
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
|
try_files $uri =404;
|
|
fastcgi_index index.php;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
fastcgi_param HTTPS on;
|
|
fastcgi_param modHeadersAvailable true;
|
|
fastcgi_param front_controller_active true;
|
|
fastcgi_pass {{ pool_name }};
|
|
fastcgi_intercept_errors on;
|
|
fastcgi_request_buffering off;
|
|
}
|
|
}
|