mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-22 20:19:21 +00:00
38 lines
667 B
PHP
38 lines
667 B
PHP
<?php
|
|
/**
|
|
* Docker container build configuration
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
//This configuration is based on the offline configuration
|
|
require_once __DIR__."/offline.config.php";
|
|
|
|
class Docker extends Offline {
|
|
|
|
/**
|
|
* Container URL
|
|
*/
|
|
const CONTAINER_URL = 'http://<?php echo $_SERVER["HTTP_HOST"]; ?>/';
|
|
|
|
/**
|
|
* API access and credentials
|
|
*/
|
|
const API_URL = self::CONTAINER_URL."api/";
|
|
const API_CLIENT_NAME = "client";
|
|
|
|
/**
|
|
* Site URL
|
|
*/
|
|
const SITE_URL = self::CONTAINER_URL;
|
|
|
|
/**
|
|
* Site production mode
|
|
*/
|
|
const PROD_MODE = TRUE;
|
|
|
|
/**
|
|
* Path to assets (URL)
|
|
*/
|
|
const ASSETS_URL = self::CONTAINER_URL."assets/".BUILD_TIME."/";
|
|
} |