Personal homepage
By just creating a public_html directory in your user home directory and putting your homepage files there, you can easily serve your personal homepage.
At a glance
Eligibility
- Staff, Third Party Staff
Requirements
- A valid math:account
Support
- For assistance, please contact the math:helpdesk.
Configuration
In order to setup your personal homepage you need to create the directory public_html in your user's home directory (which will be at /users/MATH:ACCOUNT in Linux and at U: in Windows). Once created you can put your web content files (i.e. HTML, CSS, JS, images…) into this directory.
If you have a self-supported / self-installed computer (especially Apple computers) please see remote access on how to access the your user directory on our storage system.
The command
mkdir -p ~/public_html; touch ~/public_html/index.html
executed in Linux will create the needed directory and create a file named index.html in it. This file will be displayed when you point your browser to https://www.mat.univie.ac.at/~MATH:ACCOUNT. For HTML specifics you should consult w3schools. There you can find out how to design a website.
Please make sure that the executable permission bit is set for your public_html directory:
chmod a+x $HOME/public_html
In order to write HTML it is advised to use a HTML-Editor. Some suggestions can be found at w3schools-HTML-editors.