Files
docker-images/hivemq-mqtt-web-client/nginx.conf
Joshua Schnabel 91014fa53f Update nginx.conf
2020-04-24 16:52:52 +02:00

25 lines
297 B
Nginx Configuration File

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