Update icehrm docker production setup

This commit is contained in:
Thilina Pituwala
2020-05-24 02:24:55 +02:00
parent b68401efeb
commit 854e1038c6
7 changed files with 12 additions and 16 deletions

View File

@@ -4,8 +4,8 @@ ini_set('error_log', 'data/icehrm.log');
define('CLIENT_NAME', 'icehrm');
define('APP_BASE_PATH', '/var/www/html/core/');
define('CLIENT_BASE_PATH', '/var/www/html/app/');
define('BASE_URL','http://localhost/web/');
define('CLIENT_BASE_URL','http://localhost/app/');
define('BASE_URL','http://localhost:8070/web/');
define('CLIENT_BASE_URL','http://localhost:8070/app/');
define('APP_DB', 'icehrm');
define('APP_USERNAME', 'prod');

View File

@@ -30,8 +30,8 @@ http {
# Default server definition
server {
listen [::]:80 default_server;
listen 80 default_server;
listen [::]:8070 default_server;
listen 8070 default_server;
server_name _;
sendfile off;