initial commit

This commit is contained in:
2024-10-08 14:16:29 +02:00
commit 52a5523bb1
2 changed files with 44 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
version: '3'
services:
nginx:
image: nginx:latest
container_name: nginx_proxy
ports:
- "80:80"
- "443:443"
volumes:
- /etc/pki/tls/certs/excalidraw.psi.ch.crt:/etc/nginx/certs/cert.crt:ro
- /etc/pki/tls/private/excalidraw.psi.ch.key:/etc/nginx/certs/cert.key:ro
- ./nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- excalidraw
excalidraw:
image: excalidraw/excalidraw:latest
container_name: excalidraw
ports:
- "5000:5000"
+22
View File
@@ -0,0 +1,22 @@
server {
listen 80;
server_name excalidraw.psi.ch;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name excalidraw.psi.ch;
ssl_certificate /etc/nginx/certs/excalidraw.psi.ch.crt;
ssl_certificate_key /etc/nginx/certs/excalidraw.psi.ch.key;
location / {
proxy_pass http://excalidraw:5000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}