Personal Pages✯
This page explains how to manage your personal web page on the new personal page server perso.[isima|limos].fr (both perso.isima.fr and perso.limos.fr point to the same server 193.55.95.57).
Personal pages are currently available for professors, students, and staff.
For students, the personal page only exists for the duration of their studies at ISIMA. No redirection is provided after the end of studies.
Authentication is always done with your UCA login/password
Access to this machine's SSH is only possible after connecting to the VPN
Connecting✯
ssh username@perso.isima.fr
ssh username@perso.limos.fr
On Windows 10, it is also possible to use SSH directly (normally enabled by default; otherwise, go here).
Your home directory mounts the content of your personal space (dirs).
You can also manage your personal page via ownCloud
To have a personal page, you must have a public_html directory in your home, created automatically, with the following permissions:
drwxr-xr-x
user: username
group: grppersoapache
name: public_html
Any file (particularly HTML files) in this public_html directory is visible at https://perso.isima.fr/~username and https://perso.limos.fr/~username.
A public_html/index.html file has also been created by default; you can replace it with your own index page.
Note that you must choose an official URL for your personal page; otherwise, it will be invisible in Google search results.
Choosing the official URL for your personal page (to be indexed by search engines)✯
Google de-references (makes invisible in its results) pages with duplicate content.
You must therefore choose the official URL for your personal page: either https://perso.isima.fr/~username OR https://perso.limos.fr/~username.
This is managed by the public_html/.htaccess file, also created automatically. By default, the official URL is https://perso.isima.fr/~username, and the public_html/.htaccess file contains:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^perso.limos.fr$
RewriteRule (.*) https://perso.isima.fr%{REQUEST_URI} [R=301,L]
To have an official page at https://perso.limos.fr/~username, simply modify public_html/.htaccess as follows:
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^perso.isima.fr$
RewriteRule (.*) https://perso.limos.fr%{REQUEST_URI} [R=301,L]
The unused URL will always redirect to the official address.
Changing the official URL of your personal page (do not use my username)✯
If you do not want to use your username for the official URL of your personal page, send your username and your chosen-new-username by opening a ticket at https://support.isima.fr/
- Category: "Services" > Subcategory: "Personal Page" > Title: "Vanity URL for personal page"
- Specify your username and the one you wish for the official URL
- Also specify if you want to keep the '~' prefix in the URL
Vanity URLs are reserved for permanent staff.
Updating my personal page✯
To update your personal page, you can:
- Connect directly via SSH (using scp, rsync, WinSCP, etc.)
- Use your personal space on homedirs
- Use a Git hook
- Use GitLab CI
Using a CMS for your personal pages✯
A static site does not require any updates on your part. A dynamic site does!
- For security reasons, we recommend not using a CMS to maintain your personal page.
- If you really want a CMS, consider Dokuwiki or grav, which do not use databases
- If you absolutely need a CMS with a database, send a strongly motivated request to https://support.isima.fr/
- Category: "Services" > Subcategory: "Personal Page" > Title: "CMS with database for personal page"
Setting up a redirection✯
- To automatically redirect internet users and search engines to your new personal page from the old one, leave only the following
public_html/.htaccessfile on the old personal page at fc.isima.fr:
Redirect 301 /~username-sur-glouglou https://perso.isima.fr/~username
-
Replace https://perso.isima.fr with https://perso.limos.fr if this is the domain you chose as the official URL for your personal page.
-
Replace username with chosen-new-username if you have changed the official URL of your personal page.
Please take care to verify all redirections carefully.
Using frames (not recommended)✯
Add the following line to your public_html/.htaccess:
Header always unset X-Frame-Options
Support✯
- Category: "Services" > Subcategory: "Personal Page"