Site configs

This commit is contained in:
shockrah 2024-04-16 20:27:54 -07:00
parent 4fd20a9136
commit 31795ea6d9
3 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,12 @@
server {
root /opt/nginx/resume.shockrah.xyz;
index index.html;
server_name resume.shockrah.xyz;
location / {
try_files $uri $uri/ =404;
}
}

View File

@ -0,0 +1,11 @@
server {
root /opt/nginx/shockrah.xyz;
index index.html;
server_name shockrah.xyz;
location / {
try_files $uri $uri/ =404;
}
}

View File

@ -0,0 +1,12 @@
server {
root /opt/nginx/temper.tv;
index index.html;
server_name temper.tv;
location / {
try_files $uri $uri/ =404;
}
}