15 lines
345 B
Plaintext
15 lines
345 B
Plaintext
|
# 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/shockrah.xyz;
|
||
|
index index.html;
|
||
|
server_name shockrah.xyz;
|
||
|
|
||
|
location / {
|
||
|
try_files $uri $uri/ =404;
|
||
|
}
|
||
|
}
|
||
|
|