initial version

This commit is contained in:
2025-11-04 22:45:22 +01:00
commit e8c5cfc113
6 changed files with 117 additions and 0 deletions

48
nginx-config/nginx.conf Normal file
View File

@@ -0,0 +1,48 @@
server {
listen 80;
listen [::]:80;
server_name www.junisthomsen.de;
index index.php index.html index.htm;
root /var/www/html;
client_max_body_size 64M;
location / {
try_files $uri $uri/ /index.php$is_args$args;
auth_basic "Restricted Area";
auth_basic_user_file "/etc/nginx/conf.d/httppasswd";
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass wordpress:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
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;
}
}