LoginSignup
0
0

More than 5 years have passed since last update.

nginx location regex tips

Last updated at Posted at 2017-12-19

How to proxy pass only certain directory

eg
proxy only /doc/*/videos/*
but not like /doc/*/*/videos/*

before

/etc/nginx/conf.d/default.conf
    location ~ ^/doc/ {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

after

/etc/nginx/conf.d/default.conf
    location ~* ^/doc/[^/]*/videos/ {
        proxy_pass https://backend;
    }

    location ~ ^/doc/ {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0