mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-01 13:23:01 +02:00
This enables access to /restconf on port 443 over HTTP/1.1 and HTTP/2 via rousette when enabled. Also, slight refactor to allow including /restconf and /netbrowse as optional locations in the main servier directive. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
11 lines
194 B
Plaintext
11 lines
194 B
Plaintext
server {
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
server_name network.local;
|
|
include ssl.conf;
|
|
|
|
location / {
|
|
include /etc/nginx/netbrowse.conf;
|
|
}
|
|
}
|