Skip to content

Commit

Permalink
build: fix log paths for nginx and fpm
Browse files Browse the repository at this point in the history
  • Loading branch information
victortesla committed Nov 7, 2023
1 parent 31715c1 commit 38ace10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build/grommunio-web.conf
Expand Up @@ -36,8 +36,8 @@ location ~* ^/web/(.+\.php)$ {
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$1;
fastcgi_pass fpm_web;
access_log /var/log/grommunio/nginx-web-access.log;
error_log /var/log/grommunio/nginx-web-error.log;
access_log /var/log/nginx/nginx-web-access.log;
error_log /var/log/nginx/nginx-web-error.log;
fastcgi_buffers 256 16k;
fastcgi_buffer_size 16k;

Expand Down
2 changes: 1 addition & 1 deletion build/pool-grommunio-web.conf
Expand Up @@ -21,4 +21,4 @@ rlimit_files = 131072
rlimit_core = unlimited
; logging
catch_workers_output = yes
php_admin_value[error_log] = /var/log/grommunio/fpm-web.log
php_admin_value[error_log] = /var/log/nginx/fpm-web.log

0 comments on commit 38ace10

Please sign in to comment.