Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

First create your new vitrual host configuration in Apache.

Panel
borderStyledashed
titleExample Ryzom API SiteborderStyledashed
######################
# Ryzom API Site #
######################
<VirtualHost *:80>
<Directory "/home/username/ryzom/code/web/">
Options -Indexes FollowSymLinks MultiViews
IndexOptions FancyIndexing FoldersFirst NameWidth=*
AllowOverride All
Order allow,deny
Allow from all
</Directory>
ServerAdmin admin@localhost
 
  DocumentRoot /home/username/ryzom/code/web/api
  ServerName api.domain.org
</VirtualHost>

...

First create your new vitrual host configuration in Apache.

Panel
borderStyledashed
titleExample Ryzom API SiteborderStyledashed
######################
# Ryzom App Site #
######################
<VirtualHost *:80>
<Directory "/home/username/ryzom/code/web/">
Options -Indexes FollowSymLinks MultiViews
IndexOptions FancyIndexing FoldersFirst NameWidth=*
AllowOverride All
Order allow,deny
Allow from all
</Directory>
ServerAdmin admin@localhost
 
  DocumentRoot /home/username/ryzom/code/web/app
 
  # The client hard codes /start/ into the WebIG launch URL.
  Alias /start/ /home/username/ryzom/code/web/app/
 
  ServerName app.domain.org
</VirtualHost>

...