11 lines
206 B
Plaintext
11 lines
206 B
Plaintext
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
server_name wealthwise.eventifyplus.com;
|
||
|
|
root /var/www/wealthwise.eventifyplus.com;
|
||
|
|
index index.html;
|
||
|
|
|
||
|
|
location / {
|
||
|
|
try_files $uri $uri/ /index.html;
|
||
|
|
}
|
||
|
|
}
|