a11a97e981
This should redirect meetpad connections on port 80 to port 443. Change-Id: Ibfee9d9e6efbbac01ccf8363909a4da772a4dc42
14 lines
211 B
Plaintext
14 lines
211 B
Plaintext
server {
|
|
listen 80 default_server;
|
|
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
|
|
include /config/nginx/ssl.conf;
|
|
include /config/nginx/meet.conf;
|
|
}
|