2021-12-15 07:55:02 +00:00
|
|
|
# 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/freechat;
|
|
|
|
index index.html;
|
2021-12-16 21:33:10 +00:00
|
|
|
server_name freechat.shockrah.xyz;
|
2021-12-15 07:55:02 +00:00
|
|
|
|
|
|
|
location / {
|
|
|
|
try_files $uri $uri/ =404;
|
|
|
|
}
|
|
|
|
}
|