23 lines
785 B
Plaintext
23 lines
785 B
Plaintext
![]() |
server {
|
||
|
listen 8080;
|
||
|
server_name localhost;
|
||
|
client_max_body_size 100M;
|
||
|
location / {
|
||
|
proxy_set_header Host $http_host;
|
||
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
|
proxy_set_header X-Forwarded-Proto https;
|
||
|
root /usr/share/nginx/html;
|
||
|
index index.html index.php index.htm;
|
||
|
}
|
||
|
|
||
|
location /api/ {
|
||
|
proxy_set_header Host $http_host;
|
||
|
proxy_set_header X-Real-IP $remote_addr;
|
||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||
|
rewrite ^/api/(.*)$ /$1 break; #重写
|
||
|
proxy_pass http://177.7.0.12:8000/; # 设置代理服务器的协议和地址
|
||
|
}
|
||
|
}
|