Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. location /en/tools {
  2. alias /srv/nuxt/tools/dist/en/tools;
  3. try_files $uri $uri/ @cache;
  4. }
  5. location /ar/tools {
  6. alias /srv/nuxt/tools/dist/ar/tools;
  7. try_files $uri $uri/ @cache;
  8. }
  9. location /he/tools {
  10. alias /srv/nuxt/tools/dist/he/tools;
  11. try_files $uri $uri/ @cache;
  12. }
  13.  
  14. location ~* ^/(en|ar|he)/tools/(.*) {
  15. alias /srv/nuxt/tools/dist;
  16. try_files $uri $uri/ @cache;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement