Skip to content

Instantly share code, notes, and snippets.

@balintsera
Created October 1, 2017 08:23
Show Gist options
  • Save balintsera/15c08648cc1af4116b2b0886610c36af to your computer and use it in GitHub Desktop.
Save balintsera/15c08648cc1af4116b2b0886610c36af to your computer and use it in GitHub Desktop.
Send config as cookie with nginx to single page javascript apps
location / {
root /usr/share/nginx/html;
index index.html index.htm;
add_header "Set-Cookie" 'config={"baseUrl":"http://localhost:8081"}';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment