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 15, 2013 · 5 revisions

Apache

Required Modules

  • mod_alias
  • mod_proxy
  • mod_proxy_http

Configuration

sites-enabled/000-default.conf

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

floorplan/config.json

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