Guest User

Untitled

a guest
Jul 26th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. server {
  2. listen 80;
  3. server_name www.mydomain.com;
  4. location / {
  5. proxy_pass http://my-backend;
  6. }
  7.  
  8. location /app/ {
  9. rewrite ^/(.*)$ "/\#$1" break;
  10. proxy_pass http://my-backend;
  11. }
  12.  
  13. Bad request For request 'GET /%23app/1' [Illegal character in path at index 1: /%23app/1]
Add Comment
Please, Sign In to add comment