Add support for providing other certificate

This commit is contained in:
2022-11-16 18:28:13 +01:00
parent d433f0d04f
commit 6b29e8ff3f
4 changed files with 21 additions and 10 deletions

View File

@ -1,9 +1,9 @@
server {
listen 443 ssl;
server_name nas.PH_FQDN;
server_name PH_SRVNAME;
ssl_certificate /etc/ssl/cert.crt;
ssl_certificate_key /etc/ssl/cert.key;
ssl_certificate PH_CRT;
ssl_certificate_key PH_KEY;
location / {
proxy_pass http://127.0.0.1:8080;

View File

@ -1,9 +1,9 @@
server {
listen 443 ssl;
server_name dl.PH_FQDN;
server_name PH_SRVNAME;
ssl_certificate /etc/ssl/cert.crt;
ssl_certificate_key /etc/ssl/cert.key;
ssl_certificate PH_CRT;
ssl_certificate_key PH_KEY;
location / {
proxy_pass http://127.0.0.1:9091;