1
0
inception/srcs/configs/nginx/templates/www.conf.template

27 lines
560 B
Plaintext
Raw Permalink Normal View History

2025-01-17 16:49:53 +01:00
server {
listen 443 ssl;
server_name adjoly.42.fr www.adjoly.42.fr;
root /var/www/wordpress;
2025-01-17 16:49:53 +01:00
index index.php;
ssl_certificate $NGINX_SSL_CERT_FILE;
ssl_certificate_key $NGINX_SSL_KEY_FILE;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_session_timeout 10m;
keepalive_timeout 60;
location / {
try_files $${q}uri $${q}uri/ =404;
2025-01-17 16:49:53 +01:00
}
location ~ \.php$ {
fastcgi_pass $NGINX_PHP_HOST:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
include fastcgi.conf;
2025-01-17 16:49:53 +01:00
}
}