22 lines
242 B
Nginx Configuration File
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;
|
|
}
|
|
}
|
|
}
|