pacman -Syyu # always update
pacman -S libxslt # this is needed to compile and build hiawatha
git clone https://github.com/hsleisink/hiawatha.git # archlinux-git-howto
cd hiawatha
mkdir build
cd build
make install/strip # install-cmake-from-archlinux-package
/usr/local/sbin/hiawatha -d
Ctrl-C
nano /etc/systemd/system/hiawatha.service
[Unit]
Description=Hiawatha Webserver Service
Requires=network.target
After=network.target
[Service]
ExecStart=/usr/local/sbin/hiawatha
Type=forking
[Install]
WantedBy=multi-user.target
Ctl+X
Y
Enter
systemctl enable hiawatha.service
systemctl daemon-reload
systemctl start hiawatha
pacman -S libxslt # this is needed to compile and build hiawatha
git clone https://github.com/hsleisink/hiawatha.git # archlinux-git-howto
cd hiawatha
mkdir build
cd build
make install/strip # install-cmake-from-archlinux-package
/usr/local/sbin/hiawatha -d
Ctrl-C
nano /etc/systemd/system/hiawatha.service
[Unit]
Description=Hiawatha Webserver Service
Requires=network.target
After=network.target
[Service]
ExecStart=/usr/local/sbin/hiawatha
Type=forking
[Install]
WantedBy=multi-user.target
Ctl+X
Y
Enter
systemctl enable hiawatha.service
systemctl daemon-reload
systemctl start hiawatha
Comments
Post a Comment