Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3335318
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T00:00:16+00:00 2026-05-18T00:00:16+00:00

I have a rail app that serves multiple domain_name and is deployed by nginx

  • 0

I have a rail app that serves multiple domain_name and is deployed by nginx & passenger. I need to put one domain under maintenance mode while the other still work as usual. Here is my config:

server {
    listen 80;
    server_name domain1.com domain2.com domain3.com domain4.com;
    error_page 503 http://$host/maintenance.html;

    location /maintenance.html {
      # Allow requests
    }

    location / {
        root /var/www/myapp/public;   # <--- be sure to point to 'public'!
        error_page 503 http://$host/maintenance.html;
        passenger_enabled on;
        rails_env development;
        passenger_use_global_queue on;

        if (-f /var/www/myapp/public/maintenance.html) {
            return 503;
        }
    }
}

The above config would cause all domains under maintenance. However, I want to put domain1.com is under maintenance mode. How would I achieve this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T00:00:16+00:00Added an answer on May 18, 2026 at 12:00 am

    you can add another server entry for server “domain1.com” which serve request for this domain only. like:

    server {
    listen 80;
    server_name domain1.com 
    error_page 503 http://$host/maintenance.html;
    root /your/root/directory/
    if (-f $document_root/maintenance.html){
        rewrite  ^(.*)$  /maintenance.html last;
         break;
          }
    
    location /maintenance.html {
      # Allow requests
    }}
    

    you need to ensure following

    1. The “domain1.com” should be removed from previous server
      entry
    2. maintenance.html page should be
      present in /your/root/directory/
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Have noticed issue while testing iphone app that if one quickly opens/dismisses a modal
So far I have been building my Rail app on a Mac OS X
If you have a Rail app with many complex associated models, what techniques do
Does Rail's ActiveRecord have any special rules when attempting to set one of the
I have a script that appends some rows to a table. One of the
I have a new web app that is packaged as a WAR as part
I have an existing Rails internal app, that handles inventory, invoicing, order taking, labeling,
I'm building my first Rail App and are beginning to setup my database. I
In a Rail 3 project I have a script: <%= javascript_tag do -%> var
I have a few places in a model that does stuff like def ServerInfo.starttime(param)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.