Website dazu
This commit is contained in:
parent
e630ffdf46
commit
53ba5b9561
|
@ -36,7 +36,15 @@ server {
|
||||||
# Also provide "_hidden" for by, since it's not relevant.
|
# Also provide "_hidden" for by, since it's not relevant.
|
||||||
proxy_set_header Forwarded "for=$remote_addr;proto=https;host=$host;by=_hidden";
|
proxy_set_header Forwarded "for=$remote_addr;proto=https;host=$host;by=_hidden";
|
||||||
|
|
||||||
|
location = / {
|
||||||
|
proxy_pass http://127.0.0.1:8888/;
|
||||||
|
}
|
||||||
|
location ~ ^/(apple-touch-icon.png|assets|css|js|posts|tours)(.*)$ {
|
||||||
|
proxy_pass http://127.0.0.1:8888/$1$2;
|
||||||
|
}
|
||||||
|
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://127.0.0.1:8345/;
|
proxy_pass http://127.0.0.1:8345/;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,12 +45,19 @@ services:
|
||||||
- "CELERY_BACKEND=redis://redis/0"
|
- "CELERY_BACKEND=redis://redis/0"
|
||||||
- "CELERY_BROKER=redis://redis/1"
|
- "CELERY_BROKER=redis://redis/1"
|
||||||
volumes:
|
volumes:
|
||||||
- pretix:/rdata
|
- pretix:/data
|
||||||
restart: always
|
restart: always
|
||||||
networks:
|
networks:
|
||||||
backend:
|
backend:
|
||||||
frontend:
|
frontend:
|
||||||
|
|
||||||
|
web:
|
||||||
|
image: gitlab-cr.hamburg.ccc.de/ccchh/hackertours/hackertours:latest
|
||||||
|
ports:
|
||||||
|
- "8888:80"
|
||||||
|
restart: always
|
||||||
|
networks:
|
||||||
|
frontend:
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
database: {}
|
database: {}
|
||||||
|
|
Loading…
Reference in a new issue