• 구름많음동두천 17.6℃
  • 맑음강릉 20.3℃
  • 구름많음서울 18.2℃
  • 맑음대전 18.5℃
  • 맑음대구 19.0℃
  • 맑음울산 20.0℃
  • 맑음광주 18.4℃
  • 맑음부산 19.1℃
  • 맑음고창 18.4℃
  • 맑음제주 21.3℃
  • 구름많음강화 15.3℃
  • 구름조금보은 17.3℃
  • 맑음금산 18.1℃
  • 맑음강진군 18.7℃
  • 구름조금경주시 20.7℃
  • 맑음거제 19.7℃
기상청 제공

nginx 404 error_page

  • 등록 -0001.11.30 00:00:00
server {
    listen       80;
    server_name  server;
    access_log  /var/log/httpd/nginx-access.log;
    root /home/$host/www;
 
    open_file_cache max=1000 inactive=20s;
    open_file_cache_valid    30s;
    open_file_cache_min_uses 2;
    open_file_cache_errors   on;
 
    location / {
      root /home/$host/www;
      index index.html index.php index.cgi index.htm;
    }

    error_page  404         = @notfound;
    location @notfound {
      try_files /404.html /home/$host/www/404.html =404;
    }
 
    location ~* ^.+.(jpg|gif|png|css|js|jpeg|swf)$ {
      root /home/$host/www;
    }

    location ~ .(php|html|htm)$ {
      proxy_pass  http://lighty;
      proxy_redirect off;
      proxy_set_header Host $http_host;
      proxy_set_header X-Real-IP $remote_addr;
      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_read_timeout 20;
      proxy_connect_timeout 20;
      client_body_temp_path      /opt/webapps/nginx/client_body_temp;
    }

    location = /404.html {
      internal;
    }
  }