Dockerize

This commit is contained in:
PROFERIS - Mi³osz Stocki
2026-07-07 12:09:24 +02:00
parent 7582b949b4
commit 22fcc25c5e
4 changed files with 46 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
server {
listen 80;
server_name esp32s3-wiji;
location / {
proxy_pass http://wiji-web:8421;
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;
}
}