diff options
author | startxfr <clarue@startx.fr> | 2015-11-28 15:15:52 +0100 |
---|---|---|
committer | startxfr <clarue@startx.fr> | 2015-11-28 15:15:52 +0100 |
commit | 4bb17b8c05c6e430293217797eef694671ec1e1b (patch) | |
tree | 2aec4634843d5ed54a8e71049e4e564f8d33973d /Services/php/httpd.conf | |
parent | 151b31b6f47fb3d96afdd66138ff40d92cac6202 (diff) | |
download | phpmyadmin-4bb17b8c05c6e430293217797eef694671ec1e1b.tar.gz phpmyadmin-4bb17b8c05c6e430293217797eef694671ec1e1b.tar.bz2 phpmyadmin-4bb17b8c05c6e430293217797eef694671ec1e1b.tar.xz phpmyadmin-4bb17b8c05c6e430293217797eef694671ec1e1b.zip |
final change in script lib for OS. Change in apache and php services
Diffstat (limited to 'Services/php/httpd.conf')
-rw-r--r-- | Services/php/httpd.conf | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/Services/php/httpd.conf b/Services/php/httpd.conf index 2cb8301..3a51a63 100644 --- a/Services/php/httpd.conf +++ b/Services/php/httpd.conf @@ -1,8 +1,19 @@ # -# This file will be copied into /etc/httpd/conf.d/sx.conf and loaded when httpd start +# This file will be copied into /etc/httpd/conf.d/app.conf and loaded when httpd start # ServerAdmin cl@startx.fr -<Directory "/var/www/html"> +ErrorLog "/data/logs/httpd_error.log" + +<IfModule log_config_module> + CustomLog "/data/logs/httpd_access.log" combined +</IfModule> + +Alias / /data/www +<Directory "/data/www"> + AddDefaultCharset UTF-8 AllowOverride All + Order Allow,Deny + Allow from All + Require all granted DirectoryIndex index.php index.html </Directory> |