Skip to content

Personal Pages

This page explains how to manage your personal web page on the new personal pages server perso.[isima|limos].fr (perso.isima.fr and perso.limos.fr both point to the same server 193.55.95.57).

Personal pages are currently available for professors, students, and staff.

For students, the personal page exists only for the duration of studies at ISIMA. No redirection is provided after graduation.

Authentication is always done with your UCA login/password

Access to the SSH of this machine is only possible after connecting to the VPN

Connecting

ssh username@perso.isima.fr
or

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, which is created automatically, with the following permissions:

drwxr-xr-x
user: username
group: grppersoapache
name: public_html

Any file (especially 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.

Please 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-indexes (makes invisible in its results) pages with duplicate content.

You must therefore choose the official URL for your personal page: https://perso.isima.fr/~username OR https://perso.limos.fr/~username.

This is the role of the public_html/.htaccess file, which is 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 new-username-you-have-chosen 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 want 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:

Using a CMS for your personal pages

A static site does not require any updates from you. 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 want to use a CMS with a database, send a well-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 users and search engines to your new personal page from the old one, leave only the following public_html/.htaccess file on the old personal page at fc.isima.fr:
Redirect 301 /~username-on-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 new-username-you-have-chosen if you changed the official URL of your personal page

Please take the time to carefully check all redirections.

Add the following line to your public_html/.htaccess:

Header always unset X-Frame-Options

Support

https://support.isima.fr/

  • Category: "Services" > Subcategory: "Personal Page"