Estou tentando criar um erro 404 personalizado com o nginx.
Primeiro, na minha máquina local, adicionei as seguintes linhas ao site padrão:
error_page 404 /custom_404.html;
location = /custom_404.html {
root /usr/share/nginx/html;
internal;
}
Em seguida, na pasta /usr/share/nginx/html, criei um arquivo nes chamado custom_404.html.
Então fui para minha máquina de desenvolvimento e tentei fazer o mesmo, mas sem sorte.
Uma das coisas que notei é que no local estou usando a versão 1.9.3 e no ambiente de desenvolvimento a versão 1.2.1, e também que o forlder html (/usr/share/nginx/html) não existe.
E a última coisa é que no desenvolvimento eu uso nginx para aplicativos django, então meu arquivo de configuração é algo assim:
server {
listen 80;
server_name test.example.net;
# output compression saves bandwidth
gzip on;
gzip_http_version 1.1;
gzip_vary on;
gzip_comp_level 6;
gzip_proxied any;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
client_max_body_size 10M;
if ($http_user_agent ~* '(blackberry|
iemobile|iphone|ipod|mobile|Mobile|
nokia|opera\s+mini|smartphone|symbian|webOS)') {
set $mobile on;
}
if ($http_user_agent ~* 'ipad'){
set $mobile off;
}
if ($host = example.net) {
rewrite ^(.*)$ http://www.example.net$1 permanent;
}
if ($uri = '/') {
set $home_es on;
}
if ($http_referer ~* ^http://test.example.net){
set $home_es off;
}
if ($home_es = on) {
rewrite ^(.*)$ /es$1 permanent;
}
gzip_buffers 16 8k;
gzip_disable "MSIE [1-6].(?!.*SV1)";
# media - folder in uri for admin static files
location /newmedia/ {
expires 30d;
root /media/jumbo_project;
}
location /media/ {
expires 30d;
alias /home/jumbo/media/jumbo_project/newmedia/;
}
location /static/ {
expires 30d;
root /media/jumbo_project;
}
error_page 502 503 504 500 /50x.html;
location /50x.html {
internal;
}
location / {
proxy_pass http://localhost:8000;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_read_timeout 60;
}
log_format log_time '$request_time $remote_addr - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent"';
access_log /var/log/nginx/jumbo-wsgi.access.log log_time;
error_log /var/log/nginx/jumbo-wsgi.error.log;
Fiquei sem resultados do Google para tentar, então, se alguém puder me dar uma pista para continuar, seria ótimo.