Inital Commit

This commit is contained in:
2023-07-07 06:38:14 +05:30
commit 0203e73cd1
21 changed files with 394 additions and 0 deletions

3
docker/files/.env Normal file
View File

@ -0,0 +1,3 @@
HOST=0.0.0.0
PORT=80
FILE_PATH=/data/readings.csv

View File

@ -0,0 +1,13 @@
server {
listen 80;
server_name {{ http_host }};
location / {
proxy_set_header Host $host:$server_port;
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_pass http://localhost:{{ host_port }};
}
}