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

IP Planner Fixes, Vulnerability Fixes and Clickjacking Fix #201

Merged
merged 1 commit into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
NOTES.md
TODO.md
/logs
/deployV2
2 changes: 1 addition & 1 deletion docs/how-to/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Place a checkmark next to the virtual networks you'd like to associate to the ta

## Reservations

Currently, IP CIDR block reservations are not supported via the UI, but are supported programmatically via the API. Please the **Example API Calls** section for more information on how to create IP address block reservations.
Currently, IP CIDR block reservations are not supported via the UI, but are supported programmatically via the API. Please see the **Example API Calls** section for more information on how to create IP address block reservations.

## vNETs, Subnets, and Endpoints

Expand Down
1 change: 1 addition & 0 deletions lb/nginx.dev.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ http {

# Frontend
location / {
add_header X-Frame-Options "DENY";
proxy_pass http://ui;
proxy_intercept_errors on;
proxy_set_header Host $http_host;
Expand Down
Loading