Prettify URLs (no .html required)

This commit is contained in:
3wc 2020-12-27 15:46:53 +02:00
parent 6aec124c38
commit 682c9d1de3
3 changed files with 57 additions and 0 deletions

View File

@ -4,3 +4,5 @@ export DOMAIN=custom-html.example.com
## Domain aliases
#export EXTRA_DOMAINS=', `www.custom-html.example.com`'
export LETS_ENCRYPT_ENV=production
export NGINX_DEFAULT_CONF_VERSION=v1

View File

@ -21,6 +21,9 @@ services:
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
volumes:
- content:/usr/share/nginx/html
configs:
- source: nginx_default_conf
target: /etc/nginx/conf.d/default.conf
#healthcheck:
# test: ["CMD", "curl", "-f", "http://localhost"]
# interval: 30s
@ -32,6 +35,11 @@ services:
volumes:
content:
configs:
nginx_default_conf:
name: ${STACK_NAME}_nginx_default_conf_${NGINX_DEFAULT_CONF_VERSION}
file: default.conf
networks:
proxy:
external: true

47
default.conf Normal file
View File

@ -0,0 +1,47 @@
# edited copy of upstream default config
server {
listen 80;
listen [::]:80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ $uri.html;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}