我遇到一个需求是把 /html/* 的请求都指向 /index.html ,但是不能用重定向功能
/html/*
/index.html
请问在配置文件如何实现呢?谢谢大家
web nginx nginx.conf
这样应该就可以了
location /html/ { proxy_pass http://127.0.0.1/index.html; }
可能 127.0.0.1 根据自己的实际情况需要调整的。
用git管理的django项目如何部署和管理?
我的网站ping 54ms,但是响应却要1268ms,请问该如何加速?
关于Nginx的http_gzip_static_module和http_gzip_modul...
web开发 500 inter server error详细日志找不到
当使用nginx做proxy转发时,设置的端口号会被丢掉,请问如何解决?
nginx+uwsgi+django1.5生产环境staticfiles如何配置?