webplatform / ops

http://webplatform.github.io/ops/
5 stars 1 forks source link

Migrate webat25 to DreamCompute #168

Closed renoirb closed 9 years ago

renoirb commented 9 years ago

DreamHost wants their hardware ASAP, attempt to accommodate them without impacting the WWW Foundation.

Tasks

renoirb commented 9 years ago

Job is done. Also created a temporary VM that’ll redirect explicit requests on the ExpressionEngine admin zone to the new server IP directly. That way users who needs to access the control panel should be able to work regardless of the DNS propagation time.

renoirb commented 9 years ago

To do so I created small NGINX redirect block like this

    server_name HIDDEN.webat25.org;
    location ^~ /CMSADMINZONE {
      return 301 http://67.205.62.58$request_uri;
    }
    location / {
      return 301 http://www.webat25.org/;
    }