15 lines
261 B
Text
Executable file
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 *;
|
|
}
|
|
|
|
}
|