• 구름많음동두천 5.7℃
  • 구름많음강릉 9.7℃
  • 흐림서울 6.2℃
  • 흐림대전 7.7℃
  • 흐림대구 9.9℃
  • 흐림울산 8.9℃
  • 흐림광주 8.6℃
  • 흐림부산 10.3℃
  • 흐림고창 5.4℃
  • 흐림제주 12.3℃
  • 흐림강화 4.6℃
  • 흐림보은 7.1℃
  • 흐림금산 8.3℃
  • 흐림강진군 9.2℃
  • 흐림경주시 8.4℃
  • 흐림거제 9.6℃
기상청 제공

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;
    }
  }