문제풀이소스코드nginx.confevents { worker_connections 1024;}http { server { listen 80; listen [::]:80; server_name _; location = /shop { deny all; } location = /shop/ { deny all; } location / { proxy_pass ; } }}/shop , /shop/ 접근 불가 하지만 대문자(/SHOP)로 우회 가능 app.jsconst express = require("expres..