This repository has been archived on 2024-09-04. You can view files and clone it, but cannot push or open issues or pull requests.
arimelody.me-static/nginx.conf
2024-02-18 17:31:10 +00:00

26 lines
574 B
Nginx Configuration File

server {
listen 80;
listen [::]:80;
server_name arimelody.me www.arimelody.me;
access_log logs/arimelody.log;
index index.html;
root /web/arimelody/;
client_max_body_size 0;
add_header Cache-Control "max-age=14400";
server_tokens off;
location / {
try_files $uri $uri/ $uri.html =404;
rewrite ^/music/(.*)$ https://mellodoot.com/music/$1 last;
}
location = /give_me_money {
return 301 https://smokepowered.com;
}
}