]> git.mxchange.org Git - friendica-addons.git/blob - jappixmini/jappix/php/vars-hosts.php
Merge branch '3.6-release'
[friendica-addons.git] / jappixmini / jappix / php / vars-hosts.php
1 <?php
2
3 /*
4
5 Jappix - An open social platform
6 These are the hosts configuration variables
7
8 -------------------------------------------------
9
10 License: AGPL
11 Author: Vanaryon
12 Last revision: 27/05/11
13
14 */
15
16 // Someone is trying to hack us?
17 if(!defined('JAPPIX_BASE'))
18         exit;
19
20 // Define the vars with the hosts configuration constants
21 $host_main = htmlspecialchars(HOST_MAIN);
22 $host_muc = htmlspecialchars(HOST_MUC);
23 $host_pubsub = htmlspecialchars(HOST_PUBSUB);
24 $host_vjud = htmlspecialchars(HOST_VJUD);
25 $host_anonymous = htmlspecialchars(HOST_ANONYMOUS);
26 $host_bosh = htmlspecialchars(HOST_BOSH);
27 $host_bosh_main = htmlspecialchars(HOST_BOSH_MAIN);
28 $host_bosh_mini = htmlspecialchars(HOST_BOSH_MINI);
29 $host_static = htmlspecialchars(HOST_STATIC);
30 $host_upload = htmlspecialchars(HOST_UPLOAD);
31
32 ?>