Introduction: Install a Webserver on Raspberry Pi.

This guide briefly explains how to install a webserver on your Raspberry Pi.

First you should enable ssh. A guide is found here:
https://www.instructables.com/id/Use-ssh-to-talk-with-your-Raspberry-Pi/

You'll need:
1 Raspberry Pi
(connected to a router and the Internet)

When the webserver is installed you probably want to add files with ftp:
See step 2!

If you want to make the webserver visible on the Internet look here:
https://www.instructables.com/id/Raspberry-Pi-as-webserver/

Step 1: Install Apache

Connect to your Raspberry Pi.

If you havent set up ssh a guide can be found here:
https://www.instructables.com/id/Use-ssh-to-talk-with-your-Raspberry-Pi/

Run the commands:
sudo apt-get update
sudo apt-get install apache2 php5 libapache2-mod-php5

Now your Raspberry Pi should display (if you open it in your browser):
It works!

If you are uncertain of address type ifconfig in your ssh-window. Should be 192.168.1.12 for example.

Step 2: Add Files to Your Raspberry Pi With Ftp.

Install a Ftp-client on your PC.

For example:
http://www.coreftp.com/download.html

Open a connection to your Pi.

Files are found underthe catalog /var/www

... if you have followed the previous steps.

My Raspberry webserver can be found here:
http://213.65.123.101/qr - A QR business card generator.

http://213.65.123.101/whoiam/ - all you want to know about what google knows about you.

May the Pi be with you!