You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
458 B
17 lines
458 B
# http://dubsdot and https://dubsdot
|
|
server {
|
|
server_name dubsdot.cslabs.clarkson.edu dubsdot.cosi.clarkson.edu dubsdot;
|
|
listen 80;
|
|
listen [::]:80;
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
|
|
ssl_certificate /etc/letsencrypt/live/dubsdot.cslabs.clarkson.edu/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/dubsdot.cslabs.clarkson.edu/privkey.pem;
|
|
|
|
location / {
|
|
root /var/www/html;
|
|
index index.html;
|
|
autoindex on;
|
|
}
|
|
}
|