Create nginx.conf
This commit is contained in:
21
hivemq-mqtt-web-client/nginx.conf
Normal file
21
hivemq-mqtt-web-client/nginx.conf
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user