byod/template.conf

12 lines
166 B
Plaintext

server {
listen 80;
server_name <domain>;
root /home/<user>/<domain>;
index index.html;
location / {
try_files $uri $uri/ =404;
}
}