2022-02-09 16:39:50 -05:00
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name sis.libraryofcode.org;
|
|
|
|
|
|
|
|
ssl_certificate /etc/nginx/ssl/org.chain.crt;
|
|
|
|
ssl_certificate_key /etc/nginx/ssl/org.key.pem;
|
|
|
|
|
2022-02-14 18:54:04 -05:00
|
|
|
location / {
|
2022-02-15 00:26:44 -05:00
|
|
|
#proxy_pass http://localhost:6969;
|
|
|
|
return 307 https://edu.libraryofcode.org/;
|
2022-02-09 16:39:50 -05:00
|
|
|
}
|
|
|
|
}
|