Files
docker-images/hivemq-mqtt-web-client/nginx.conf
Joshua Schnabel 3ed686189e Update nginx.conf
2020-04-23 18:42:10 +02:00

22 lines
242 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 /var/www/hivemq-mqtt-web-client;
}
}
}