Files
docker-images/hivemq-mqtt-web-client/nginx.conf
Joshua Schnabel 1a5b692b88 Update nginx.conf
2020-04-24 16:46:54 +02:00

26 lines
313 B
Nginx Configuration File

user www-data;
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;
}
}
}