Skip to content

Commit

Permalink
fix server name
Browse files Browse the repository at this point in the history
  • Loading branch information
ErlerPhilipp committed Mar 20, 2024
1 parent faf7823 commit a922d0d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions web/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ http {
# Remove this block for HTTP
server {
listen 80 default_server;
server_name _;
server_name pix2model.cg.tuwien.ac.at;

location /.well-known/acme-challenge/ {
root /var/www/certbot;
Expand All @@ -63,11 +63,11 @@ http {
listen [::]:443 ssl;

ssl on;
ssl_certificate /etc/ssl/live/netidee.cg.tuwien.ac.at/fullchain.pem;
ssl_certificate_key /etc/ssl/live/netidee.cg.tuwien.ac.at/privkey.pem;
ssl_certificate /etc/ssl/live/pix2model.cg.tuwien.ac.at/fullchain.pem;
ssl_certificate_key /etc/ssl/live/pix2model.cg.tuwien.ac.at/privkey.pem;
# ====================== END - HTTPS SETUP ======================

server_name netidee.cg.tuwien.ac.at;
server_name pix2model.cg.tuwien.ac.at;
client_max_body_size 0;

#access_log /var/log/nginx/host.access.log main;
Expand Down

0 comments on commit a922d0d

Please sign in to comment.