Nginx配置反向代理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx配置反向代理相关的知识,希望对你有一定的参考价值。
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
upstream apachephp { #配置访问组
server 127.0.0.1:8080; #Apache #配置代理服务器
}
server {
listen 80;
server_name localhost;
location / {
` proxy_pass http://apachephp; #配置访问组
root html;
index index.php index.html index.htm;
}
}
}
以上是关于Nginx配置反向代理的主要内容,如果未能解决你的问题,请参考以下文章