diff options
author | gareth | 2007-02-27 23:31:14 +0000 |
---|---|---|
committer | gareth | 2007-02-27 23:31:14 +0000 |
commit | ed4dc30dc2b00628a3d6c298b6b2d6ec7f74ab56 (patch) | |
tree | c96e74cc05e4c6d6e97716c0c509fb0ec1693fc6 /ogs/assetserver/assetserver_config.inc.php | |
parent | Brought in code from branches/gareth (diff) | |
download | opensim-SC-ed4dc30dc2b00628a3d6c298b6b2d6ec7f74ab56.zip opensim-SC-ed4dc30dc2b00628a3d6c298b6b2d6ec7f74ab56.tar.gz opensim-SC-ed4dc30dc2b00628a3d6c298b6b2d6ec7f74ab56.tar.bz2 opensim-SC-ed4dc30dc2b00628a3d6c298b6b2d6ec7f74ab56.tar.xz |
Brought in other OGS server components and the all-important caffeine script
Diffstat (limited to 'ogs/assetserver/assetserver_config.inc.php')
-rw-r--r-- | ogs/assetserver/assetserver_config.inc.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ogs/assetserver/assetserver_config.inc.php b/ogs/assetserver/assetserver_config.inc.php new file mode 100644 index 0000000..529a4f7 --- /dev/null +++ b/ogs/assetserver/assetserver_config.inc.php | |||
@@ -0,0 +1,16 @@ | |||
1 | <? | ||
2 | // All the asset server specific stuff lives here | ||
3 | |||
4 | // The asset server's relative URL to the root of the webserver | ||
5 | // If you place this at http://servername/assets then this would be set to /assets/index.php | ||
6 | // wikipedia style URLs need to be implemented - and will be (en.wikipedia.org/wiki/blabla rather than en.wikipedia.org/wiki/index.php?something=bla or en.wikipedia.org/wiki.php/bla) | ||
7 | $asset_home = "/ogs/assetserver/index.php/"; | ||
8 | |||
9 | // The key we expect from sims | ||
10 | $sim_recvkey = "rtrgrgrgrgr894898f998re98rf989fds"; | ||
11 | |||
12 | // The path where the asset repository is stored, this should be readable by the webserver but NOT in the document root | ||
13 | // The default below is BAD for production use and intended to be simply generic - change it or risk copyright theft | ||
14 | // greater than you could ever imagine, alternatively use .htaccess or other mechanisms. | ||
15 | $asset_repos = "/var/www/htdocs/ogs/assetserver/assets"; | ||
16 | ?> \ No newline at end of file | ||