kastielspb

Confix nginx to cache vue trans

Aug 6th, 2020
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. ...
  2. location ~* vuejs-translate/.*.js$ {
  3. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  4. proxy_set_header X-Forwarded-Proto $scheme;
  5. proxy_set_header Host $http_host;
  6. proxy_redirect off;
  7. proxy_pass http://{{some_site}}_gunicorn_server;
  8. expires 30d;
  9. }
  10. ...
Add Comment
Please, Sign In to add comment