diff --git a/nginx.conf b/nginx.conf index aa120c9..622bef2 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,18 +1,25 @@ server { - listen 80; - listen [::]:80; - server_name arimelody.me www.arimelody.me; + listen 80; + listen [::]:80; - root /web/arimelody/; + server_name arimelody.me www.arimelody.me; + access_log logs/arimelody.log; - client_max_body_size 0; + index index.html; + root /web/arimelody/; - add_header Cache-Control "max-age=14400"; + client_max_body_size 0; - server_tokens off; + add_header Cache-Control "max-age=14400"; - location / { - try_files $uri $uri/ $uri.html =404; - rewrite ^/music/(.*)$ https://mellodoot.com/music/$1 last; - } + 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; + } }