Ask HN: Making Server with open source?
1–5 of 5 posts
Re: Ask HN: Making Server with open source?
#2Firewall: IPTables if you're running a firewall on the box. However, if you're running a firewall edge of network, then I'd go with a dedicated solution like Shoreline, Smoothwall or ClarkConnect.
LDAP: OpenLDAP. By itself, OpenLDAP is not difficult. However, as you add layers to it like TLS and Kerberos, etc. then the configuration becomes obtuse.
Web server: Nginx (the current king), but Apache is still a strong choice. Nginx works great with the newer frameworks where you're running it as a proxy for your application server plus as a high performance static file server. Apache is still solid if you're developing in PHP.
Re: Ask HN: Making Server with open source?
#3Mail: Postfix (my go to SMTP server). However, a lot of people like Exim as well, but I've never got into it. Sendmail is powerful, but unwieldy. Postfix is very simple to configure a basic email server, especially b/c RedHat does such a great job with the defaults. However, be careful with security if you expose your server to the Internet. Firewall: IPTables if you're running a firewall on the box. However, if you'…
Re: Ask HN: Making Server with open source?
#4Mail: Postfix (my go to SMTP server). However, a lot of people like Exim as well, but I've never got into it. Sendmail is powerful, but unwieldy. Postfix is very simple to configure a basic email server, especially b/c RedHat does such a great job with the defaults. However, be careful with security if you expose your server to the Internet. Firewall: IPTables if you're running a firewall on the box. However, if you'…
in web server i have read that using nginx as your front static file server and apache as backend server is best choice ? And also can you tell which is better Linux for server REHL(CentOS) or Ubuntu , as REHL provide out dated softwares but Ubuntu is cutting edge ?
Re: Ask HN: Making Server with open source?
#5You should firstly find out what they mean by "untested sources", as this could mean building code from source/tarballs and not using their 1-click installer for software (where a lot of the software will likely be open source in any case).