Differences between revisions 5 and 7 (spanning 2 versions)
Revision 5 as of 2015-05-10 03:02:49
Size: 649
Comment:
Revision 7 as of 2017-01-20 00:40:04
Size: 690
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
There is an Apache web server running on nodus to serve for svn web access server and generic web pages for 40m stuff. There is an Apache web server running on nodus serving:
 * Remot
e SVN access and web interface
 * HTTPS wra
pped ELOG
 * Folder
s in `nodus:/export/home/`
Line 5: Line 8:
To (re)start the server, run "sudo service apache2 (re)start" on nodus. To (re)start the server, run{{{
sudo service apache2 (re)start}}} on nodus.
Line 7: Line 11:
=== Warning ===
The above command fails sometimes with:
controls@nodus|~ > sudo service apache2 start
 * Starting web server apache2
/var/run/lock/ already exists but is not a directory owned by controls.
Please fix manually. Aborting.
=== Configuration ===
Line 14: Line 13:
which can be bypassed by doing:
sudo chown controls lock
Configuration files are found in `nodus:/etc/apache2`, with the site-specific files in `nodus:/etc/apache2/sites-available`
Line 17: Line 15:
but that seems like a bug in the setup procedures. Directory indexing for the wikis is disabled, as there may be sensitive vendor information that we don't want to expose. This is done via the following lines in `/etc/apache2/sites-available/nodus`:{{{
<Directory /export/home/*iki>
    Options -Indexes
</Directory>
}}}

Apache on nodus

There is an Apache web server running on nodus serving:

  • Remote SVN access and web interface
  • HTTPS wrapped ELOG
  • Folders in nodus:/export/home/

To (re)start the server, run

sudo service apache2 (re)start

on nodus.

Configuration

Configuration files are found in nodus:/etc/apache2, with the site-specific files in nodus:/etc/apache2/sites-available

Directory indexing for the wikis is disabled, as there may be sensitive vendor information that we don't want to expose. This is done via the following lines in /etc/apache2/sites-available/nodus:

<Directory /export/home/*iki>
    Options -Indexes
</Directory>

ApacheOnNodus (last edited 2023-08-24 02:39:36 by KojiaraiATligoDOTorg)