====== Guides: Web server: Part 3 ====== * [[:guides/webserver|Back to Guides: Webserver]] * [[:guides/webserver/part1|Back to Guides: Webserver Part 2]] ====== Hello World ====== ==== Setting permissions ==== First, we need to give our current user (ubuntu) permission to edit files on the webserver, then we change to the web directory and move the old index.html file out of the way: sudo chown -R ubuntu:ubuntu /var/www/html/ cd /var/www/html/ mv index.html old.html ==== Visit your website ==== Now, if you vist your IP address (the one we connect to via Putty/ssh) in your browser you should see a directory listing that contains one file (''old.html'') ==== Create the first program ==== We can create a new file by typing this: echo "" > test.php echo "" > test2.php If you refresh your new website, now you should see two files: ''old.html'' and ''test.php'' Clicking on ''test.php'' should show your newly created "Hello, world" program * [[:Guides/Webserver/Part4|(next) Webserver Part 4: Editing files]]