infra/playbooks/beta/base-site-conf/freechat.shockrah.xyz
shockrah 962885470b * Fixing server name for freechat
- Removing pointless single website push playbook
2021-12-16 13:33:10 -08:00

14 lines
349 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/freechat;
index index.html;
server_name freechat.shockrah.xyz;
location / {
try_files $uri $uri/ =404;
}
}