Rumah > Soal Jawab > teks badan
Ini ialah laluan projek bahasa go saya (MVC): /home/demo/goproj/src/Test Ia mendengar port 8080. Bagaimana untuk menulis fail konfigurasi Nginx? ? Saya telah mengkonfigurasinya beberapa kali tetapi ia masih salah. " lokasi /{} " atau tulis seperti ini " lokasi /Ujian {}"
伊谢尔伦2017-05-16 17:29:54
Versi mudah:
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://localhost:8080;
}
Secara amnya fail statik disediakan oleh nginx, jadi ia boleh ditulis seperti ini
root /home/demo/goproj/src/Test/public;
try_files $uri/index.html $uri.html $uri @goapp;
location @goapp {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://localhost:8080;
}
大家讲道理2017-05-16 17:29:54
server {
listen 80;
server_name 123.com;
location / {
proxy_pass http://127.0.0.1:8080;
proxy_redirect default;
}
}
Jika ada direktori tahap 2 maka
location /test {
proxy_pass http://127.0.0.1:8080;
proxy_redirect default;
}