49 lines
1.2 KiB
Plaintext
49 lines
1.2 KiB
Plaintext
server {
|
|
listen 80;
|
|
server_name _;
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
server_name _;
|
|
|
|
ssl_certificate /etc/nginx/ssl/server.crt;
|
|
ssl_certificate_key /etc/nginx/ssl/server.key;
|
|
|
|
ssl_protocols TLSv1.2 TLSv1.3;
|
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
|
|
|
root /var/www/html/public;
|
|
index index.php index.html;
|
|
|
|
access_log /var/log/nginx/access.log;
|
|
error_log /var/log/nginx/error.log;
|
|
|
|
location / {
|
|
try_files $uri /index.php$is_args$args;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
|
|
fastcgi_param DOCUMENT_ROOT $realpath_root;
|
|
fastcgi_pass php:9000;
|
|
fastcgi_read_timeout 120;
|
|
|
|
# Ensure HTTPS is correctly detected by Symfony if Nginx is behind a TLS termination proxy
|
|
fastcgi_param HTTPS $https if_not_empty;
|
|
# Standard forwarded headers
|
|
fastcgi_param HTTP_X_FORWARDED_FOR $proxy_add_x_forwarded_for;
|
|
fastcgi_param HTTP_X_FORWARDED_PROTO $scheme;
|
|
fastcgi_param HTTP_X_FORWARDED_HOST $host;
|
|
fastcgi_param HTTP_X_FORWARDED_PORT $server_port;
|
|
}
|
|
|
|
location ~ /\.ht {
|
|
deny all;
|
|
}
|
|
|
|
client_max_body_size 32m;
|
|
}
|