> > The proxy should be blocking direct access to port 8080, forcing users >> through port 80. >> > > That's helpful - and sounds more sensible than messing with the server.js > module. Would you be able to point me in the direction of any example > proxies which do this please? TW5-auth does not... >
Maybe you can just use the firewall on your VM to block access to port 8080? Then, to answer one of your earlier questions, this is the line that permits anonymous access for GET and HEAD requests: https://github.com/kunxi/tw5-auth/blob/master/app.js#L93 You'd just need to remove the chunk: req.method == 'GET' || req.method == 'HEAD' || Best wishes Jeremy > > Best wishes, > > Javid > -- Jeremy Ruston mailto:[email protected] -- You received this message because you are subscribed to the Google Groups "TiddlyWikiDev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywikidev. For more options, visit https://groups.google.com/groups/opt_out.
