16 lines
263 B
Plaintext
16 lines
263 B
Plaintext
server {
|
|
listen 80;
|
|
server_name evotraders.cillinn.com;
|
|
|
|
root /var/www/evotraders/current;
|
|
index index.html;
|
|
|
|
location /.well-known/acme-challenge/ {
|
|
allow all;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|