Thanks,
Steve
The simplest solution would be to use .htaccess
Any other sufficiently flexible solution would be actively considered,
but for our use case we don't need security on REST so don't expect us
to implement it any time soon (other than applying patches).
Ross
Steve
> --
> You received this message because you are subscribed to the Google Groups
> "Simal contributors" group.
> To post to this group, send an email to simal-con...@googlegroups.com.
> To unsubscribe from this group, send email to
> simal-contribut...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/simal-contributors?hl=en-GB.
>
>
Good call.
Last time I looked I got a headache as there are no standards and
several options with various tradeoffs. This is typical discussion:
http://stackoverflow.com/questions/454355/security-of-rest-authentication-schemes
Steve
FYI, here's what I've ended up doing:
In httpd.conf:
ProxyPass /simal-rest !
Also, I wanted to forward port 80 to 8080:
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
To block all direct access to port 8080:
iptables -A INPUT -j DROP -p tcp --destination-port 8080 -i eth0
I guess I could have just run Simal on port 80, but that seemed weird somehow.
Steve
Possibly interesting reading about history and oAuth
steve