bba8c30b25
So far testing with with athens-freechat.shockrah.xyz HTTP setup is working thus far and so certbot integrations are all that is left. Once those are done creating plays for all other websites should be fairly straight forward
14 lines
356 B
Plaintext
14 lines
356 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 athens-freechat.shockrah.xyz;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
}
|