11 lines
190 B
Plaintext
11 lines
190 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name portal.bytser.com;
|
|
|
|
location ~ /.well-known/acme-challenge {
|
|
allow all;
|
|
root /tmp/acme_challenge;
|
|
}
|
|
}
|