Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Reverse Proxy Setup

Ben Hutchison edited this page Aug 21, 2013 · 5 revisions

Apache httpd

Required Modules

  • mod_alias
  • mod_proxy
  • mod_proxy_http

Configuration

/etc/apache2/sites-enabled/000-default.conf

RedirectMatch 301 ^/my-floorplan$ /my-floorplan/
ProxyPass /my-floorplan/ http://127.0.0.1:3001/my-floorplan/
ProxyPassReverse /my-floorplan/ /

floorplan/config.json

{
    "wwwPort": 3001,
    "mountPoint": "/my-floorplan"
}
Clone this wiki locally