ringa_lee2017-05-16 17:16:04
這個跟nginx沒什麼關係吧。 nginx設定一個轉送的位址,然後監聽這個位址的wsgi伺服器可以把你想要的路由指向你想要去的這個檔案。
ringa_lee2017-05-16 17:16:04
在目錄/path/to/html
放个文件hello.html
,
配置如下:
server {
listen 4080;
location / {
try_files '' /path/to/html;
}
location = /hello.html {
root /path/to/html;
}
}