| 1234567891011121314151617181920212223242526272829 |
- server {
- listen *:8060;
- server_name localhost;
- location /nginx_status {
- stub_status;
- server_tokens off;
- access_log off;
- allow 127.0.0.1;
- deny all;
- }
- location /metrics {
- vhost_traffic_status_display;
- vhost_traffic_status_display_format prometheus;
- server_tokens off;
- access_log off;
- allow 127.0.0.1;
- deny all;
- }
- location /rails-metrics {
- proxy_cache off;
- proxy_http_version 1.0;
- proxy_pass http://gitlab-workhorse/-/metrics;
- server_tokens off;
- access_log off;
- allow 127.0.0.1;
- deny all;
- }
- }
|