playbooks/iot/files/nginx.conf.j2
Amritanshu 774b69be38 Add: IOT using Mosquitto // Node red // InfluxDB // Grafana
File and folder permissions are a bitch.
Also, will only leave access to grafana and remove the rest to be accessed using ssh tunnels
2023-07-13 14:32:17 +05:30

45 lines
1.1 KiB
Django/Jinja

server {
listen 80;
server_name {{ http_host }};
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
location /mqtt/ {
proxy_pass http://localhost:9001/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $host;
}
location /node-red/ {
proxy_set_header Host $http_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;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://localhost:1880/;
}
location /dashboard/ {
proxy_set_header Host $http_host;
proxy_pass http://localhost:3005/;
}
location /dashboard/api/live/ {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $http_host;
proxy_pass http://localhost:3005/;
}
}