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

added no-store header to st2 nginx configuration #6264

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Fixed
* Fix Popen.pid typo in st2tests. #6184
* Bump tooz package to `6.2.0` to fix TLS. #6220 (@jk464)
* Shells via `pywinrm` are initialized with the 65001 codepage to ensure raw string responses are UTF-8. #6034 (@stealthii)
* Added no-store header for location / in nginx config to prevent web ui serving cached versions of opened flows. st2web#1030 (@fdrab)

Changed
~~~~~~~
Expand Down
1 change: 1 addition & 0 deletions conf/nginx/st2.conf
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ server {
}

location / {
add_header Cache-Control "no-store";
max_ranges 0;
root /opt/stackstorm/static/webui/;
index index.html;
Expand Down
Loading