Arc Forumnew | comments | leaders | submitlogin
Ssl support for arc
2 points by shader 5550 days ago | 1 comment
What would be the easiest way to add support for arc to be an ssl client/server? Right now I'm trying to make some proxy code in arc that requires ssl support, so I'm mostly focused on client side, but server will be important soon.

Currently I'm using the http-get library, and modifying it to add the functionality I need.



4 points by CatDancer 5550 days ago | link

The easiest? To serve HTTPS web pages run a web server which supports SSL such as nginx, lighttpd, or Apache in front of Arc; and to make HTTPS requests from Arc run a web client program which supports SSL such as wget or curl.

-----