byod/template.conf

12 lines
166 B
Plaintext
Raw Normal View History

2019-08-14 15:23:14 +00:00
server {
listen 80;
server_name <domain>;
root /home/<user>/<domain>;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}