Skip to content

Instantly share code, notes, and snippets.

@pokle
Created August 7, 2015 11:39
Show Gist options
  • Save pokle/4ab0f80adfb6a729755a to your computer and use it in GitHub Desktop.
Save pokle/4ab0f80adfb6a729755a to your computer and use it in GitHub Desktop.
events {
worker_connections 1024;
}
http {
server {
listen 80;
location = / {
return 302 http://localhost/a/b/c;
}
location = /a/b/c {
add_header Set-Cookie "abc=123;Path=/;Max-Age=60;";
return 200 "Hejjj";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment