-
Notifications
You must be signed in to change notification settings - Fork 3.9k
nginx: update repository of maintained naxsi module #26029
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -290,10 +290,10 @@ define Download/nginx-mod-ts | |
| endef | ||
|
|
||
| define Download/nginx-mod-naxsi | ||
| SOURCE_DATE:=2022-09-14 | ||
| SOURCE_VERSION:=d714f1636ea49a9a9f4f06dba14aee003e970834 | ||
| URL:=https://github.com/nbs-system/naxsi.git | ||
| MIRROR_HASH:=b0cef5fbf842f283eb5f0686ddd1afcd07d83abd7027c8cfb3e84a2223a34797 | ||
| SOURCE_DATE:=2025-01-05 | ||
| SOURCE_VERSION:=b61ba37b3666b386c7a6d83fbcdf6ca3377395a1 | ||
| URL:=https://github.com/wargio/naxsi.git | ||
| MIRROR_HASH:=2b8bf06f8e4cee95e287158c193c4930deab097bf1491c03a95dd8b0c2682d4c | ||
| PROTO:=git | ||
| endef | ||
|
|
||
|
|
@@ -356,7 +356,11 @@ $(foreach m,$(PKG_MOD_EXTRA),$(eval $(call Module/Download,$(m)))) | |
|
|
||
| define Module/nginx-mod-naxsi/install | ||
| $(INSTALL_DIR) $(1)/etc/nginx | ||
| $(INSTALL_CONF) $(PKG_BUILD_DIR)/nginx-mod-naxsi/naxsi_config/naxsi_core.rules $(1)/etc/nginx | ||
| $(INSTALL_CONF) $(PKG_BUILD_DIR)/nginx-mod-naxsi/naxsi_rules/naxsi_core.rules $(1)/etc/nginx | ||
| endef | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Regarding your standing question and the FormalityCheck "missing conffiles" critical error: because Note this pre-dates your change (the old line also used Generated by Claude Code |
||
|
|
||
| define Package/nginx-mod-naxsi/conffiles | ||
| /etc/nginx/naxsi_core.rules | ||
| endef | ||
|
|
||
| define Quilt/Refresh/Package | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The naxsi module's source repo, revision and hash all change here, so the built
nginx-mod-naxsipackage content changes — butPKG_RELEASEis still1. OpenWrt convention is to bumpPKG_RELEASEwhenever a package's built output changes, so users receive the rebuilt package onopkg upgrade. This is also the "Packagenet/nginxcontent changed without a PKG_RELEASE or version bump" warning from the FormalityCheck bot. Please bumpPKG_RELEASEto2.Generated by Claude Code