@timps terms of use shows up during the registration process, not on the registration page. There is a strong in the ACP, I suggest using the search to find it
Takes a few seconds for it to show users and that I'm logged in.
-
Just figured I'd write back with what the fix was!
First of all, if you're using apache 2.2, it doesnt come with a new proxy module "mod_proxy_wstunnel", this is now included in the newer 2.4 distributions of the platform.
Next, if you google around, you can find easy instructions for debian/ubuntu for backporting that module to work with your setup.
The next part, is what was added to my sites-available/sitename.conf
ProxyRequests off <Proxy *> Order deny,allow Allow from all </Proxy>
ProxyPass /socket.io/1/websocket ws://127.0.0.1:4567/socket.io/1/websocket
ProxyPassReverse /socket.io/1/websocket ws://127.0.0.1:4567/socket.io/1/websocketProxyPass /socket.io/ http://127.0.0.1:4567/socket.io/
ProxyPassReverse /socket.io/ http://127.0.0.1:4567/socket.io/ProxyPass / http://127.0.0.1:4567/
ProxyPassReverse / http://127.0.0.1:4567/My config.json from Nodebb
"port": "4567",
"use_port": true,
"bind_address": "127.0.0.1",Sincerely hope this helps someone else out. However after this major fiasco, I'm leaning towards NGinx more now as it seems to be supported by default and I've been thinking about the move for a while now.
-
Cool, thanks for posting the update!
-
Is your installation a local one, and if so, will you be changing the bind_address to a real IP for the production site, or would it still be the loop back address even in production?
-
@planner Since Apache and Node live on the same server and Apache is doing a proxy/reverse proxy, it will live with a local IP, I did have to make one tweak and that was to change use_port: false within the config.json..
-
So you changed use_port: true to use_port: false, right?
-
-
-
-
Also added link to Main Wiki (Hope that was ok)
-
Wow awesome! Thanks so much @kelso and of course yeah definitely needs to be on the homepage
small shout-out to you on our recent blog post