Create nginx.conf

This commit is contained in:
Joshua Schnabel
2020-04-23 18:19:50 +02:00
committed by GitHub
parent 8bab2584f1
commit 58e5016326

View File

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