How to configure yaws webserver in the linux terminal?

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

Answers (1)

Jonas
Jonas

Reputation: 129125

This is how I installed Yaws 1.89 on Ubuntu Server 10.10.

1. Update your Ubuntu system

sudo apt-get update
sudo apt-get upgrade

2. Install the tools you need to compile

sudo apt-get install gcc
sudo apt-get install libpam0g-dev

3. Download, compile and install Yaws 1.89

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

Related Questions