Co-incidentally, we at StuffBuff were working on a similar project today. :-)
We used nginx (www.nginx.org) to set this up -- note we have it running on a different port temporarily while testing. APEd is running on port 8080 on localhost. Pretty easy setup - took maybe an hour to get configured and working to aped. Now, I did open a paid support ticket because the JS framework doesn't allow you to specify a protocol for APE.Config.server from config.js... waiting for a response from the guys at Weelya, hopefully tomorrow. See below for a snippet from the nginx config file. Good luck! Jason Korkin, CTO StuffBuff Inc http://www.StuffBuff.com server { listen 8443; server_name localhost; ssl on; ssl_certificate server.crt; ssl_certificate_key server.key; ssl_session_timeout 5m; ssl_protocols SSLv3 TLSv1; ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW: +SSLv2:+EXP; ssl_prefer_server_ciphers on; location / { proxy_pass http://127.0.0.1:8080; } On Dec 17, 4:31 pm, do0zer <[email protected]> wrote: > Is there any way to get the framework to work securly through SSL? > > I tried to use Stunnel, and changed the framework to use SSL however > it doesn't work > > Thanks -- You received this message because you are subscribed to the Google Groups "APE Project" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/ape-project?hl=en --- APE Project (Ajax Push Engine) Official website : http://www.ape-project.org/ Git Hub : http://github.com/APE-Project/
