HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

gixy-next — Analyze NGINX configuration files for security and performance misconfigurations. More information:

Submitted by: @import:tldr-pages··
0
Viewed 0 times
configurationcommandnginxfilesgixy-nextanalyzeclifor

Problem

How to use the gixy-next command: Analyze NGINX configuration files for security and performance misconfigurations. More information: <https://gixy.io/usage/>.

Solution

gixy-next — Analyze NGINX configuration files for security and performance misconfigurations. More information: <https://gixy.io/usage/>.

Analyze nginx configuration (default path: /etc/nginx/nginx.conf):
gixy-next {{path/to/nginx.conf}}


Analyze a rendered configuration dump via stdin (-):
cat {{path/to/nginx-dump.conf}} | gixy-next -


Run only specific checks (comma-separated):
gixy-next --tests {{http_splitting,ssrf,version_disclosure}} {{path/to/nginx.conf}}


Skip specific checks (comma-separated):
gixy-next --skips {{low_keepalive_requests,worker_rlimit_nofile_vs_connections}} {{path/to/nginx.conf}}


Only report issues at a given severity or higher:
gixy-next {{-l|-ll|-lll}} {{path/to/nginx.conf}}


Output as uncolored text or machine-readable JSON:
gixy-next {{[-f|--format]}} {{text|json}} {{path/to/nginx.conf}}

Code Snippets

Analyze `nginx` configuration (default path: `/etc/nginx/nginx.conf`)

gixy-next {{path/to/nginx.conf}}

Analyze a rendered configuration dump via `stdin` (`-`)

cat {{path/to/nginx-dump.conf}} | gixy-next -

Run only specific checks (comma-separated)

gixy-next --tests {{http_splitting,ssrf,version_disclosure}} {{path/to/nginx.conf}}

Skip specific checks (comma-separated)

gixy-next --skips {{low_keepalive_requests,worker_rlimit_nofile_vs_connections}} {{path/to/nginx.conf}}

Only report issues at a given severity or higher

gixy-next {{-l|-ll|-lll}} {{path/to/nginx.conf}}

Context

tldr-pages: common/gixy-next

Revisions (0)

No revisions yet.