Reputation: 11
can someone help me on to write my yaws webserver configuration file in the Linux terminal. when i follow the yaws tutorials i get errors. thanks a lot.
Upvotes: 0
Views: 639
Reputation: 129125
This is how I installed Yaws 1.89 on Ubuntu Server 10.10.
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install gcc
sudo apt-get install libpam0g-dev
wget http://yaws.hyber.org/download/yaws-1.89.tar.gz
tar xfz yaws-1.89.tar.gz
cd yaws
./configure && make
sudo make install
Upvotes: 2