Compare commits
5 Commits
main
...
v5-stale-d
| Author | SHA1 | Date | |
|---|---|---|---|
| 71e7326a99 | |||
| ee5cb811c6 | |||
| 194915b078 | |||
| 9802e61496 | |||
| fc2c80cfac |
2
abra.sh
2
abra.sh
@ -1,2 +1,2 @@
|
||||
export NGINX_DEFAULT_CONF_VERSION=v6
|
||||
export NGINX_DEFAULT_CONF_VERSION=v7
|
||||
export ENTRYPOINT_CONF_VERSION=v3
|
||||
|
||||
@ -3,7 +3,7 @@ services:
|
||||
git:
|
||||
environment:
|
||||
- GIT_REPO_URL
|
||||
image: alpine/git:v2.52.0
|
||||
image: alpine/git:v2.49.1
|
||||
entrypoint: /docker-entrypoint.sh
|
||||
volumes:
|
||||
- content:/git
|
||||
|
||||
@ -3,7 +3,7 @@ version: "3.8"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: nginx:1.31.1
|
||||
image: nginx:1.29.0
|
||||
networks:
|
||||
- proxy
|
||||
deploy:
|
||||
@ -19,7 +19,7 @@ services:
|
||||
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
|
||||
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
|
||||
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
|
||||
- "coop-cloud.${STACK_NAME}.version=1.13.0+1.31.1"
|
||||
- "coop-cloud.${STACK_NAME}.version=1.11.2+1.29.0"
|
||||
- "backupbot.backup=true"
|
||||
- "backupbot.backup.path=/usr/share/nginx/html"
|
||||
environment:
|
||||
|
||||
@ -7,6 +7,13 @@ server {
|
||||
#charset koi8-r;
|
||||
#access_log /var/log/nginx/host.access.log main;
|
||||
|
||||
location ~ \.txt$ {
|
||||
root /usr/share/nginx/html;
|
||||
types { }
|
||||
default_type application/octet-stream;
|
||||
try_files $uri =404;
|
||||
}
|
||||
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
index index.html index.htm;
|
||||
|
||||
Reference in New Issue
Block a user