mirror of
https://github.com/hassio-addons/addon-mqtt.git
synced 2025-05-07 04:31:26 +00:00
21 lines
No EOL
427 B
Nginx Configuration File
21 lines
No EOL
427 B
Nginx Configuration File
worker_processes 1;
|
|
pid /var/run/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
sendfile on;
|
|
keepalive_timeout 65;
|
|
|
|
server {
|
|
server_name hassio.local;
|
|
listen 5713 default_server;
|
|
root /app;
|
|
auth_basic "Restricted";
|
|
auth_basic_user_file /etc/nginx/.htpasswd;
|
|
}
|
|
} |