From 4b2e22ba2189da2428bf063f6d24f7dc7945e02f Mon Sep 17 00:00:00 2001 From: Michael RICOIS Date: Fri, 10 Feb 2017 15:22:47 +0100 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20la=20documentation?= =?UTF-8?q?=20et=20simplification?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/README | 14 +++++++++++++- docs/config/.user.ini | 8 ++++++++ docs/{ => config}/application.ini | 0 3 files changed, 21 insertions(+), 1 deletion(-) create mode 100755 docs/config/.user.ini rename docs/{ => config}/application.ini (100%) diff --git a/docs/README b/docs/README index dfa1ffb79..6e7664233 100644 --- a/docs/README +++ b/docs/README @@ -13,7 +13,7 @@ Note : Project are define to be use on Linux Server, so take care about path and PROJECT ======= - This application is a frontend for the WebService and it's display information graphically. + This application is a frontend for the WebService and it's display information graphically. SYSTEM REQUIREMENTS @@ -42,6 +42,18 @@ Environment configuration Set in apache vhost config file (mod_php) or in .user.ini (php-fpm) + . mod_php + + Add in + SetEnv APPLICATION_ENV "development" + +. php-fpm + + Add a file in document root path (public/) a file .user.ini + env[APPLICATION_ENV] = "development" + + See the .user.ini file + - Persistent Storage diff --git a/docs/config/.user.ini b/docs/config/.user.ini new file mode 100755 index 000000000..fca1ec173 --- /dev/null +++ b/docs/config/.user.ini @@ -0,0 +1,8 @@ +upload_max_filesize=513M +post_max_size=513M +memory_limit=512M +mbstring.func_overload=0 +always_populate_raw_post_data=-1 +default_charset='UTF-8' +date.timezone='Europe/Paris' +env[APPLICATION_ENV] = "development" \ No newline at end of file diff --git a/docs/application.ini b/docs/config/application.ini similarity index 100% rename from docs/application.ini rename to docs/config/application.ini