Skip to content
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

fix dataset/new #1112

Merged
merged 1 commit into from
Oct 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion proxy/nginx-common.conf
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ location = /500.html {
}

# prevent users from accessing: '/dataset/new' route, 'package_create' and 'resource_create' API routes
location ~ ^/(dataset\/new|api\/action\/package_create|api\/action\/resource_create)\/? {
location ~ ^/(dataset\/new|api\/action\/package_create|api\/action\/resource_create)/?$ {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nice fix, fuhu!

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you really need to remove the \? I like the end-of-line, easy fix 😉

Copy link
Member Author

@FuhuXia FuhuXia Oct 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In nginx, escaping forward slash is optional. But since the leading / is not escaped, why escape the trailing one.

deny all;
}