• 흐림동두천 1.0℃
  • 흐림강릉 1.3℃
  • 서울 3.2℃
  • 대전 3.3℃
  • 대구 6.8℃
  • 울산 6.6℃
  • 광주 8.3℃
  • 부산 7.7℃
  • 흐림고창 6.7℃
  • 흐림제주 10.7℃
  • 흐림강화 2.2℃
  • 흐림보은 3.2℃
  • 흐림금산 4.4℃
  • 흐림강진군 8.7℃
  • 흐림경주시 6.7℃
  • 흐림거제 8.0℃
기상청 제공

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