mirror of
https://github.com/pierre42100/comunic
synced 2024-11-16 18:41:13 +00:00
14 lines
207 B
PHP
14 lines
207 B
PHP
|
<?php
|
||
|
/**
|
||
|
* List of allowed hosts
|
||
|
*
|
||
|
* @author Pierre HUBERT
|
||
|
*/
|
||
|
|
||
|
$liste_allowed_hosts = array(
|
||
|
"communiquons.org",
|
||
|
"192.168.1.5",
|
||
|
"devweb.local"
|
||
|
|
||
|
//Add here your URL for your personnal installation
|
||
|
);
|