Your IP : 216.73.216.91


Current Path : /etc/apache2/sites-enabled/
Upload File :
Current File : //etc/apache2/sites-enabled/qa.inatote.com.conf

<VirtualHost *:80>
    ServerName qa.inatote.com
    ErrorLog   "/var/node/inatote/qa_inatote/qa_inatote_error_log"
    CustomLog  "/var/node/inatote/qa_inatote/qa_inatote_access_log" common

    ## Here's our magic
    ProxyRequests off
    ProxyPreserveHost On
    ProxyVia Full

    <Proxy *>
        Require all granted
    </Proxy>

    <Location />
        ProxyPass http://127.0.0.1:3000/
        ProxyPassReverse http://127.0.0.1:3000/
    </Location>
RewriteEngine on
RewriteCond %{SERVER_NAME} =qa.inatote.com
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>