This repository has been archived by the owner on Jan 12, 2022. It is now read-only.
forked from felipelerena/FlightDeck
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
48 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
* An example Apache .conf:: | ||
|
||
<VirtualHost *:80> | ||
ServerAdmin [email protected] | ||
ServerName flightdeck.some.domain | ||
|
||
<Directory /path/to/FlightDeck/apache/> | ||
Order deny,allow | ||
Allow from all | ||
Options Indexes FollowSymLinks | ||
</Directory> | ||
|
||
<Location "/adminmedia"> | ||
SetHandler default | ||
</Location> | ||
Alias /adminmedia /path/to/FlightDeck/flightdeck/adminmedia | ||
|
||
<Location "/media/tutorial"> | ||
SetHandler default | ||
</Location> | ||
Alias /media/tutorial /path/to/FlightDeck/flightdeck/tutorial/media | ||
|
||
<Location "/media/api"> | ||
SetHandler default | ||
</Location> | ||
Alias /media/api /path/to/FlightDeck/flightdeck/api/media | ||
|
||
<Location "/media/jetpack"> | ||
SetHandler default | ||
</Location> | ||
Alias /media/jetpack /path/to/FlightDeck/flightdeck/jetpack/media | ||
|
||
<Location "/media"> | ||
SetHandler default | ||
</Location> | ||
Alias /media /path/to/FlightDeck/flightdeck/media | ||
|
||
LogLevel warn | ||
ErrorLog /path/to/FlightDeck/logs/apache_error.log | ||
CustomLog /path/to/FlightDeck/logs/apache_access.log combined | ||
|
||
WSGIDaemonProcess flightdeck user=www-data group=www-data threads=25 | ||
WSGIProcessGroup flightdeck | ||
|
||
WSGIScriptAlias / /path/to/FlightDeck/apache/config_local.wsgi | ||
</VirtualHost> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.