IT:Web Site
Jump to navigation
Jump to search
Creating a website
All AOS users have available to them the ability to publish webpages. In order to do so, please perform the following:
- If it does not already exist, create the directory public_html,
mkdir ~/public_html - Ensure the permissions on the directry are set correctly,
chmod 755 ~/public_html - Create your first webpage called index.html in the public_html directory. The following is a template you can use,
<html>
<head>
<title>Sample AOS Webpage</title>
</head>
<body>
This is my very own sample AOS webpage.
</body>
</html>