matthewtran.com/website/matthewtran.com
2023-09-11 00:16:44 +00:00

14 lines
222 B
Plaintext

server {
listen 80;
listen [::]:80;
server_name matthewtran.com www.matthewtran.com;
root /var/www/matthewtran.com/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}