Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
no html2 in django
  • Loading branch information
mvogl committed Jan 3, 2018
1 parent fd3c3d6 commit 993f207
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/nginx/mydjango.conf
Expand Up @@ -11,15 +11,15 @@ server {
}

location / {
proxy_pass https://web/;
proxy_pass http://web/;
}

location /.well-known {
alias /var/www/c105-187.cloud.gwdg.de/.well-known;
}

listen 443 ssl http2 default_server;
listen [::]:443 ssl http2 default_server;
listen 443 ssl default_server;
listen [::]:443 ssl default_server;
server_name c105-187.cloud.gwdg.de;
ssl_certificate /etc/nginx/certs/fullchain.pem;
ssl_certificate_key /etc/nginx/certs/privkey.pem;
Expand Down

0 comments on commit 993f207

Please sign in to comment.