{"id":51124490,"url":"https://github.com/GetPageSpeed/gixy-jetbrains","last_synced_at":"2026-06-25T06:01:27.275Z","repository":{"id":342469356,"uuid":"1173723394","full_name":"GetPageSpeed/gixy-jetbrains","owner":"GetPageSpeed","description":"JetBrains IDE plugin for gixy — nginx configuration security analyzer","archived":false,"fork":false,"pushed_at":"2026-06-02T15:14:26.000Z","size":106,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-02T17:13:53.624Z","etag":null,"topics":["gixy","gixy-ng","jetbrains","jetbrains-plugin","nginx","security"],"latest_commit_sha":null,"homepage":"https://plugins.jetbrains.com/plugin/30510-gixy","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GetPageSpeed.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-05T17:20:34.000Z","updated_at":"2026-06-02T15:19:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/GetPageSpeed/gixy-jetbrains","commit_stats":null,"previous_names":["getpagespeed/gixy-jetbrains"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/GetPageSpeed/gixy-jetbrains","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GetPageSpeed%2Fgixy-jetbrains","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GetPageSpeed%2Fgixy-jetbrains/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GetPageSpeed%2Fgixy-jetbrains/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GetPageSpeed%2Fgixy-jetbrains/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GetPageSpeed","download_url":"https://codeload.github.com/GetPageSpeed/gixy-jetbrains/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GetPageSpeed%2Fgixy-jetbrains/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34761847,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gixy","gixy-ng","jetbrains","jetbrains-plugin","nginx","security"],"created_at":"2026-06-25T06:01:23.870Z","updated_at":"2026-06-25T06:01:27.270Z","avatar_url":"https://github.com/GetPageSpeed.png","language":"Kotlin","funding_links":[],"categories":["Configuration and tooling"],"sub_categories":[],"readme":"# Gixy - Nginx Security Scanner for JetBrains IDEs\n\nA JetBrains IDE plugin that integrates [gixy](https://github.com/dvershinin/gixy), the nginx configuration security analyzer. Get real-time security findings as inline annotations with one-click fixes, right in your editor.\n\n## Features\n\n- **30+ security checks** — SSRF, header injection, path traversal, version disclosure, and more\n- **Inline annotations** — security issues highlighted directly in the editor with severity levels (Error, Warning, Weak Warning)\n- **Quick-fix suggestions** — one-click fixes for common misconfigurations\n- **Documentation links** — jump to detailed docs for each finding\n- **Automatic binary download** — no Python required; a frozen gixy binary is downloaded on first use\n- **Configurable** — adjust severity threshold, set custom binary path, toggle on-save-only mode\n\n## Installation\n\n### From JetBrains Marketplace\n\n1. Open **Settings** \u003e **Plugins** \u003e **Marketplace**\n2. Search for **\"Gixy\"**\n3. Click **Install** and restart the IDE\n\n### Manual Install\n\n1. Download the latest ZIP from [Releases](https://github.com/getpagespeed/gixy-jetbrains/releases)\n2. Open **Settings** \u003e **Plugins** \u003e gear icon \u003e **Install Plugin from Disk...**\n3. Select the downloaded ZIP\n\n## How It Works\n\nThe plugin uses the [ExternalAnnotator](https://plugins.jetbrains.com/docs/intellij/external-annotator.html) API to run gixy in the background whenever you open or edit an nginx configuration file.\n\n1. **File detection** — matches `*.conf`, `sites-available/*`, `conf.d/*`, and other common nginx config patterns\n2. **Background analysis** — runs `gixy --format json \u003cfile\u003e` and parses the JSON output\n3. **Annotation** — maps each finding to an inline annotation with appropriate severity\n4. **Quick-fixes** — offers search/replace fixes from gixy and links to reference documentation\n\n## Configuration\n\nOpen **Settings** \u003e **Tools** \u003e **Gixy** to configure:\n\n| Setting | Description | Default |\n|---------|-------------|---------|\n| Enable Gixy | Toggle the analyzer on/off | Enabled |\n| Gixy path | Custom path to gixy binary | Auto-detected |\n| Minimum severity | Only show findings at or above this level | LOW |\n| On save only | Run analysis only when the file is saved | Disabled |\n\n## Requirements\n\n- **JetBrains IDE** 2024.1 or later (IntelliJ IDEA, WebStorm, PyCharm, etc.)\n- **gixy binary** — automatically downloaded on first use, or install manually:\n  ```bash\n  pip install gixy-ng\n  ```\n\n## Building from Source\n\nRequires JDK 17+.\n\n```bash\nexport JAVA_HOME=$(brew --prefix openjdk@17)/libexec/openjdk.jdk/Contents/Home\n\n./gradlew build          # Compile + checks\n./gradlew buildPlugin    # Produce installable ZIP in build/distributions/\n./gradlew runIde         # Launch sandbox IDE with plugin loaded\n./gradlew verifyPlugin   # Verify compatibility with target platform\n```\n\n## Related Projects\n\n- [gixy](https://github.com/dvershinin/gixy) — the nginx security analyzer engine\n- [Gixy documentation](https://gixy.getpagespeed.com) — detailed check descriptions and remediation advice\n- [GetPageSpeed Amplify](https://gixy.org/guides/nginx-monitoring-amplify) — continuous Gixy scanning and NGINX monitoring for production hosts\n\n## License\n\nApache 2.0 — see [LICENSE](LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGetPageSpeed%2Fgixy-jetbrains","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FGetPageSpeed%2Fgixy-jetbrains","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGetPageSpeed%2Fgixy-jetbrains/lists"}