initial commit

This commit is contained in:
2023-09-07 14:23:30 -05:00
commit 857aa1af52
213 changed files with 5930 additions and 0 deletions

29
nginx/conf/nginx.conf Normal file
View File

@@ -0,0 +1,29 @@
server {
listen 80;
listen [::]:80;
server_name benchcoach.online www.benchcoach.online;
server_tokens off;
location /.well-known/acme-challenge/ {
root /var/www/certbot;
}
location / {
return 301 https://benchcoach.online$request_uri;
}
}
server {
listen 443 default_server ssl http2;
listen [::]:443 ssl http2;
server_name benchcoach.online;
ssl_certificate /etc/nginx/ssl/live/benchcoach.online/fullchain.pem;
ssl_certificate_key /etc/nginx/ssl/live/benchcoach.online/privkey.pem;
location / {
# ...
}
}