2021-04-14 22:57:08 -04:00
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name staff.libraryofcode.org;
|
|
|
|
|
|
|
|
ssl_certificate /etc/nginx/ssl/org.chain.crt;
|
|
|
|
ssl_certificate_key /etc/nginx/ssl/org.key.pem;
|
|
|
|
|
|
|
|
#limit_req zone=one burst=15;
|
|
|
|
location / {
|
2021-05-14 01:55:19 -04:00
|
|
|
return 307 https://wiki.libraryofcode.org/en/cs-support;
|
2021-05-01 15:13:49 -04:00
|
|
|
}
|
|
|
|
}
|