Files
2025-11-13 20:14:59 +01:00

50 lines
1.1 KiB
Nginx Configuration File

server {
listen 80;
listen [::]:80;
server_name blog.tanjathomsen.de;
index index.php index.html index.htm;
client_max_body_size 64M;
root /var/www/html;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass wordpress:9000;
fastcgi_index index.php;
include fastcgi_params;
# Absolute path fixes 'Primary script unknown' / 'file not found' issues
fastcgi_param SCRIPT_FILENAME /var/www/html$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
# Optional but helps debugging
fastcgi_read_timeout 300;
fastcgi_buffering off;
}
location ~ /\.ht {
deny all;
}
location = /favicon.ico {
log_not_found off; access_log off;
}
location = /robots.txt {
log_not_found off; access_log off; allow all;
}
location ~* \.(css|gif|ico|jpeg|jpg|js|png)$ {
expires max;
log_not_found off;
}
}