Maison > Questions et réponses > le corps du texte
server {
listen 80;
server_name www.hehehe.com;
charset utf-8;
location /test {
include uwsgi_params;
uwsgi_pass 127.0.0.1:3031;
}
}
Pour des demandes comme celle-ci sur http://hehehe.com/test/index
Le proxy inverse atteint uwsgi qui est une application Django
Ensuite, je veux juste proxy la partie /index de la réponse URL, pas /test/index
Maintenant, /test/index fait que ma route d'URL Django ne correspond pas.
PHP中文网2017-05-16 17:17:51
server {
listen 80 default_server;
client_max_body_size 10M;
client_body_buffer_size 128k;
server_name $host;
index index.html;
root /website/$host;
location / {
}
location ~ /dev/ {
rewrite /dev/(.*)$ / break;
proxy_pass http://localhost:3000;
}
}
Réécrivez-le