Mercurial > code > home > repos > homeauto
view service/cardReader/local.conf @ 1745:d90cb7c06f15
try to crash if mqtt doesn't connect
author | drewp@bigasterisk.com |
---|---|
date | Thu, 09 Nov 2023 17:21:59 -0800 |
parents | 1ecceb2e92a3 |
children |
line wrap: on
line source
daemon off; pid /dev/null; error_log stderr; #worker_processes 1; events { worker_connections 1024; } http { types { text/html html; text/css css; image/gif gif; image/jpeg jpeg jpg; application/x-javascript js; image/png png; } server { listen 8888; access_log off; location / { proxy_pass http://bang; proxy_set_header Host bigasterisk.com; proxy_buffering off; } location /frontDoor/rfid/ { proxy_pass http://localhost:10012; proxy_set_header Host $http_host; proxy_buffering off; rewrite /frontDoor/rfid(.*) $1 break; } } }