Skip to content

Commit

Permalink
Comment out TLS section in nginx config by default as there are no certs
Browse files Browse the repository at this point in the history
Fixes #5243
  • Loading branch information
asdil12 committed Jul 13, 2023
1 parent 7860717 commit 7587fe4
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions etc/nginx/vhosts.d/openqa.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ server {
include vhosts.d/openqa-locations.inc;
}

server {
listen 443 ssl;
listen [::]:443 ssl;
server_name openqa.example.com;

ssl_certificate /etc/dehydrated/certs/openqa.example.com/fullchain.pem;
ssl_certificate_key /etc/dehydrated/certs/openqa.example.com/privkey.pem;
include vhosts.d/openqa-locations.inc;
}
#server {
# listen 443 ssl;
# listen [::]:443 ssl;
# server_name openqa.example.com;
#
# ssl_certificate /etc/dehydrated/certs/openqa.example.com/fullchain.pem;
# ssl_certificate_key /etc/dehydrated/certs/openqa.example.com/privkey.pem;
# include vhosts.d/openqa-locations.inc;
#}

0 comments on commit 7587fe4

Please sign in to comment.