Maintenance Page

Dear List,

I am looking for a maintenance page while working on the upstream Tomcat
server. Below is my nginx.conf file. Is there anything wrong in this
config
, as it’s not redirecting to the maintenance.html page.

#######################################################################

This is the main Nginx configuration file.

#######################################################################
user www-server;
pid logs/nginx.pid;
worker_processes 8;

error_log /usr/local/nginx/logs/error.log;
#----------------------------------------------------------------------

Events Module

#----------------------------------------------------------------------
events {
worker_connections 1024;
}
#----------------------------------------------------------------------

HTTP Core Module

#----------------------------------------------------------------------
http {
include /usr/local/nginx/conf/mime.types;
default_type application/octet-stream;

log_format  main  '$remote_addr - $remote_user [$time_local] 

“$request”

'$status $body_bytes_sent “$http_referer” ’
‘"$http_user_agent" “$http_x_forwarded_for”’;

access_log  /usr/local/nginx/logs/access.log  main;

sendfile        on;
#tcp_nopush     on;

#keepalive_timeout  0;
keepalive_timeout  65;
    upstream backend {
    #    ip_hash;
        server 192.168.65.102:8080 srun_id=a;
        #server 192.168.65.103:8080;
        jvm_route $cookie_JSESSIONID reverse;
    }
server {
    listen       80;
    server_name report-int.example.com;
    root    /var/www/example.com/;

    location / {
            if (-f $document_root/maintenance.html) {
            return 503;
      }
        proxy_pass         http://backend;
        proxy_redirect     off;
        proxy_set_header   Host             $host;
        proxy_set_header   X-Real-IP        $remote_addr;
        proxy_set_header   X-Forwarded-For 

$proxy_add_x_forwarded_for;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}
error_page 503 @maintenance;
location @maintenance {
rewrite ^(.*)$ /maintenance.html break;
}
error_page 404 /404.html;
location = /404.html {
root /usr/local/nginx/html;
}
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/local/nginx/html;
}
}
}

On Sat, Mar 31, 2012 at 12:23:43AM +0530, trm asn wrote:

Hi there,

I am looking for a maintenance page while working on the upstream Tomcat
server. Below is my nginx.conf file. Is there anything wrong in this config
, as it’s not redirecting to the maintenance.html page.

This config seems to work for me.

When the appropriate maintenance.html is present, a request for
/echo/foo
returns 503 and the maintenance content; otherwise, the request returns
the upstream response for /echo/foo.

What responses do you get from

curl -i http://report-int.example.com/echo/foo

when /var/www/example.com/maintenance.html is present, and is not
present?

(And is there anything unusual in the output of “nginx -V” and “nginx
-v”?)

f

Francis D. [email protected]