LoMeS/assets/config/nginx/nginx_HTTP.conf

15 lines
424 B
Text
Raw Permalink Normal View History

2025-10-18 20:30:17 +02:00
###########################################################
### ###
### MESHPI NGINX CONFIG ###
### ###
###########################################################
server {
listen 80;
server_name DOMAIN IPADDR;
location / {
proxy_pass http://127.0.0.1:5000;
}
}