+ Certbot certificate installation

+ Pushing out all website content
+ Pushing out nginx configs
+ Resume nginx config
This commit is contained in:
shockrah
2021-12-15 00:52:41 -08:00
parent bba8c30b25
commit 8c318157e3
4 changed files with 83 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
# This file basically contains the base configuration for freechat.shockrah.xyz
# This is to be installed before running certbot against it as this only sets us
# up for correct HTTP(not TLS) based connections
server {
root /var/www/resume.shockrah.xyz;
index index.html;
server_name resume.shockrah.xyz;
location / {
try_files $uri $uri/ =404;
}
}