Another Great Web Server "hiawatha-webserver" :)

rdn

Well-known member
https://www.hiawatha-webserver.org/about
Hiawatha is an open source webserver with a focus on security. I started Hiawatha in January 2002. Before that time, I had used several webservers, but I didn't like them. They had unlogical, almost cryptic configuration syntax and none of them gave me a good feeling about their security and robustness. So, I decided it was time to write my own webserver. I never thought that my webserver would become what it is today, but I enjoyed working on it and liked to have my own open source project. In the years that followed, Hiawatha became a fully functional webserver.

Performance testing while under attack

https://vpsboard.com/topic/4129-hiawatha-installation-script-hiawatha-php-fpm-mariadb/
 
Hiawatha web server install script (Hiawatha,PHP-FPM,MariaDB)
https://gist.github.com/ZEROF/10743343
Update from:
Code:
if [ $(getconf LONG_BIT) = "64" ] ; then
  echo -e "\n\e[40;38;5;82m Hiawatha Server \e[30;48;5;82m SETTING DEBIAN 7/64bits \e[0m"
  url="http://files.tuxhelp.org/hiawatha/hiawatha_9.8_amd64.deb"
else
  echo -e "\n\e[40;38;5;82m Hiawatha Server \e[30;48;5;82m SETTING DEBIAN 7/32bits \e[0m"
  url="http://files.tuxhelp.org/hiawatha/hiawatha_9.8_i386.deb"
fi
to
Code:
if [ $(getconf LONG_BIT) = "64" ] ; then
  echo -e "\n\e[40;38;5;82m Hiawatha Server \e[30;48;5;82m SETTING DEBIAN 7/64bits \e[0m"
  url="http://files.tuxhelp.org/hiawatha/hiawatha_9.8-1_amd64.deb"
else
  echo -e "\n\e[40;38;5;82m Hiawatha Server \e[30;48;5;82m SETTING DEBIAN 7/32bits \e[0m"
  url="http://files.tuxhelp.org/hiawatha/hiawatha_9.8-1_i386.deb"
fi
 
Top Bottom