Skip to content

Commit

Permalink
Change nginx log format name from main
Browse files Browse the repository at this point in the history
it reports error as it is duplicated
  • Loading branch information
kkimurak committed Feb 21, 2025
1 parent 9dff930 commit fc0012a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions assets/runtime/config/nginx/gitlab
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ map $request_uri $obfuscated_request_uri {
~(.+\?)(.*&)?(private_token=|access_token=)[^&]*(&.*|$) $1$2$3****$4;
default $request_uri;
}
log_format main '$remote_addr - $remote_user [$time_local] '
log_format gitlab_access '$remote_addr - $remote_user [$time_local] '
'"$request_method $obfuscated_request_uri $server_protocol" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent"';

Expand Down Expand Up @@ -58,7 +58,7 @@ server {
add_header Strict-Transport-Security "max-age={{NGINX_HSTS_MAXAGE}};";

## Individual nginx logs for this GitLab vhost
access_log {{GITLAB_LOG_DIR}}/nginx/gitlab_access.log main;
access_log {{GITLAB_LOG_DIR}}/nginx/gitlab_access.log gitlab_access;
error_log {{GITLAB_LOG_DIR}}/nginx/gitlab_error.log;

location / {
Expand Down
4 changes: 2 additions & 2 deletions assets/runtime/config/nginx/gitlab-registry
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ server {
server_name {{GITLAB_REGISTRY_HOST}};
server_tokens off; ## Don't show the nginx version number, a security best practice
return 301 https://$http_host:$request_uri;
access_log {{GITLAB_LOG_DIR}}/nginx/gitlab_registry_access.log;
access_log {{GITLAB_LOG_DIR}}/nginx/gitlab_registry_access.log gitlab_access;
error_log {{GITLAB_LOG_DIR}}/nginx/gitlab_registry_error.log;
}

Expand All @@ -36,7 +36,7 @@ server {
ssl_session_cache builtin:1000 shared:SSL:10m;
ssl_session_timeout 5m;

access_log {{GITLAB_LOG_DIR}}/nginx/gitlab_registry_access.log;
access_log {{GITLAB_LOG_DIR}}/nginx/gitlab_registry_access.log gitlab_access;
error_log {{GITLAB_LOG_DIR}}/nginx/gitlab_registry_error.log;

location / {
Expand Down
6 changes: 3 additions & 3 deletions assets/runtime/config/nginx/gitlab-ssl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ map $request_uri $obfuscated_request_uri {
~(.+\?)(.*&)?(private_token=|access_token=)[^&]*(&.*|$) $1$2$3****$4;
default $request_uri;
}
log_format main '$remote_addr - $remote_user [$time_local] '
log_format gitlab_ssl_access '$remote_addr - $remote_user [$time_local] '
'"$request_method $obfuscated_request_uri $server_protocol" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent"';

Expand All @@ -49,7 +49,7 @@ server {
server_name _; ## Replace this with something like gitlab.example.com
server_tokens off; ## Don't show the nginx version number, a security best practice
return 301 https://$host:{{GITLAB_PORT}}$request_uri;
access_log {{GITLAB_LOG_DIR}}/nginx/gitlab_access.log main;
access_log {{GITLAB_LOG_DIR}}/nginx/gitlab_access.log gitlab_ssl_access;
error_log {{GITLAB_LOG_DIR}}/nginx/gitlab_error.log;
}

Expand Down Expand Up @@ -103,7 +103,7 @@ server {
ssl_dhparam {{SSL_DHPARAM_PATH}};

## Individual nginx logs for this GitLab vhost
access_log {{GITLAB_LOG_DIR}}/nginx/gitlab_access.log main;
access_log {{GITLAB_LOG_DIR}}/nginx/gitlab_access.log gitlab_ssl_access;
error_log {{GITLAB_LOG_DIR}}/nginx/gitlab_error.log;

location / {
Expand Down

0 comments on commit fc0012a

Please sign in to comment.