etc-configs/nginx/sites-available/contador.zzls.xyz.conf
2023-12-21 14:01:35 -03:00

15 lines
261 B
Text
Executable file

server {
listen 80;
access_log /var/log/nginx/contador.xyz.log;
root /var/www/website;
index contador.html;
server_name contador.ayaya.beauty;
location / {
try_files $uri $uri/ =404;
add_header Access-Control-Allow-Origin *;
}
}