1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jappix_ynh.git synced 2024-09-03 19:26:19 +02:00
jappix_ynh/source/php/vars-hosts.php
titoko titoko 96663cd7da add source
2013-11-27 12:56:15 +01:00

33 lines
843 B
PHP
Executable file

<?php
/*
Jappix - An open social platform
These are the hosts configuration variables
-------------------------------------------------
License: AGPL
Author: Valérian Saliou
Last revision: 27/05/11
*/
// Someone is trying to hack us?
if(!defined('JAPPIX_BASE'))
exit;
// Define the vars with the hosts configuration constants
$host_main = htmlspecialchars(HOST_MAIN);
$host_muc = htmlspecialchars(HOST_MUC);
$host_pubsub = htmlspecialchars(HOST_PUBSUB);
$host_vjud = htmlspecialchars(HOST_VJUD);
$host_anonymous = htmlspecialchars(HOST_ANONYMOUS);
$host_bosh = htmlspecialchars(HOST_BOSH);
$host_bosh_main = htmlspecialchars(HOST_BOSH_MAIN);
$host_bosh_mini = htmlspecialchars(HOST_BOSH_MINI);
$host_static = htmlspecialchars(HOST_STATIC);
$host_upload = htmlspecialchars(HOST_UPLOAD);
$bosh_proxy = htmlspecialchars(BOSH_PROXY);
?>