Files
docker-images/hivemq-mqtt-web-client/nginx.conf
Joshua Schnabel d39c6b23e4 Update nginx.conf
2020-04-23 18:26:08 +02:00

22 lines
234 B
Nginx Configuration File

daemon off;
pid /var/run/nginx.pid;
events {
worker_connections 5;
}
http {
include /etc/nginx/mime.types;
index index.html;
server {
listen *:80;
location / {
root /hivemq-mqtt-web-client;
}
}
}