Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
7eff1f5b60
31
arulbalaji.xyz
Normal file
31
arulbalaji.xyz
Normal file
|
@ -0,0 +1,31 @@
|
|||
server {
|
||||
server_name arulbalaji.xyz;
|
||||
|
||||
location / {
|
||||
proxy_pass http://127.0.0.1:1313; # Assuming your Hugo server is running on port 8080
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
}
|
||||
|
||||
listen 443 ssl; # managed by Certbot
|
||||
ssl_certificate /etc/letsencrypt/live/videos.arulbalaji.xyz/fullchain.pem; # managed by Certbot
|
||||
ssl_certificate_key /etc/letsencrypt/live/videos.arulbalaji.xyz/privkey.pem; # managed by Certbot
|
||||
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
|
||||
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
|
||||
|
||||
}
|
||||
|
||||
server {
|
||||
if ($host = arulbalaji.xyz) {
|
||||
return 301 https://$host$request_uri;
|
||||
} # managed by Certbot
|
||||
|
||||
|
||||
listen 80;
|
||||
server_name arulbalaji.xyz;
|
||||
return 404; # managed by Certbot
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user