add initial conf

This commit is contained in:
2022-05-01 18:52:23 +03:00
parent 73cce2e835
commit 9be5c5a41e

10
config/nginx.conf.initial Normal file
View File

@@ -0,0 +1,10 @@
server {
listen 80;
listen [::]:80;
server_name portal.bytser.com;
location ~ /.well-known/acme-challenge {
allow all;
root /tmp/acme_challenge;
}
}