Files
home-assistant-addons/vhclient/rootfs/etc/nginx/vhclient.conf
Hans Karlinius 3f90602790 test
2024-11-26 09:01:52 +01:00

16 lines
193 B
Plaintext

daemon off;
error_log stderr;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
server {
listen 8099;
allow 172.30.32.2;
deny all;
}
}