mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 23:21:13 +01:00
21 lines
428 B
Text
21 lines
428 B
Text
|
## thub_ssl.conf
|
||
|
|
||
|
server {
|
||
|
listen 3011 ssl;
|
||
|
listen [::]:3011 ssl;
|
||
|
server_name _;
|
||
|
|
||
|
include /etc/nginx/snippets/ssl-params.conf;
|
||
|
include /etc/nginx/snippets/ssl-certificate-app-data.conf;
|
||
|
|
||
|
access_log /var/log/nginx/access_thub.log;
|
||
|
error_log /var/log/nginx/error_thub.log;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://127.0.0.1:3010;
|
||
|
|
||
|
include /etc/nginx/snippets/ssl-proxy-params.conf;
|
||
|
}
|
||
|
|
||
|
}
|