Files
Erste-Repository/nginx.conf

23 lines
448 B
Nginx Configuration File
Raw Permalink Normal View History

2025-09-17 12:37:46 +00:00
server {
listen 8080;
server_name localhost;
root /var/www/html;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass wordpress:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
location ~ /\.ht {
deny all;
}
}