47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
## Version 2025/05/31 - Changelog: https://github.com/linuxserver/docker-baseimage-alpine-nginx/commits/3.22/root/defaults/nginx/site-confs/default.conf.sample
|
|
|
|
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
listen 443 ssl default_server;
|
|
listen [::]:443 ssl default_server;
|
|
listen 443 quic reuseport default_server;
|
|
listen [::]:443 quic reuseport default_server;
|
|
|
|
server_name _;
|
|
|
|
include /config/nginx/ssl.conf;
|
|
|
|
set $root /app/www/public;
|
|
if (!-d /app/www/public) {
|
|
set $root /config/www;
|
|
}
|
|
root $root;
|
|
index index.html index.htm index.php;
|
|
|
|
location / {
|
|
# enable for basic auth
|
|
#auth_basic "Restricted";
|
|
#auth_basic_user_file /config/nginx/.htpasswd;
|
|
|
|
try_files $uri $uri/ /index.html /index.htm /index.php$is_args$args;
|
|
}
|
|
|
|
location ~ ^(.+\.php)(.*)$ {
|
|
# enable the next two lines for http auth
|
|
#auth_basic "Restricted";
|
|
#auth_basic_user_file /config/nginx/.htpasswd;
|
|
|
|
fastcgi_split_path_info ^(.+\.php)(.*)$;
|
|
if (!-f $document_root$fastcgi_script_name) { return 404; }
|
|
fastcgi_pass 127.0.0.1:9000;
|
|
fastcgi_index index.php;
|
|
include /etc/nginx/fastcgi_params;
|
|
}
|
|
|
|
# deny access to .htaccess/.htpasswd files
|
|
location ~ /\.ht {
|
|
deny all;
|
|
}
|
|
}
|