initial public commit

This commit is contained in:
Jacob Lifshay 2024-07-03 23:40:30 -07:00
commit 6456bc19ce
17 changed files with 1613 additions and 0 deletions

View file

@ -0,0 +1,13 @@
server {
listen 80 default_server;
listen [::]:80 default_server;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location /.well-known/acme-challenge {
root /var/www;
}
}