# Landing Page The below commands will setup a basic web server and a landing page for your PiFrame. This is meant to help you remember where 'all the things' are located and provide quick access as desired. ## Important Notes * You'll need to adjust the below HTML to use the proper ip address of your PiFrame * This setup uses ```lighttpd``` as it's very performant and resource lean. More so than ```nginx``` * All but the ```cockpit``` link below are for services that appear later in our documentation, all of them optional ## Setup ``` sh ######################################## # web server w/ useful links ######################################## apt install lighttpd cat > /var/www/html/index.html < PiFrame

CockPit Web Management

Monit Monitoring

Munin Monitoring

Syncthing Admin Interface

Picture File Browser

EOF firewall-cmd --zone=public --permanent --add-service=http firewall-cmd --zone=public --permanent --add-service=https firewall-cmd --reload systemctl enable --now lighttpd ```