gpt4 book ai didi

linux - nginx 作为运行 apache 的反向代理

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:11:00 24 4
gpt4 key购买 nike

我在将 nginx 配置为反向代理时遇到了一些问题。

很高兴地说我的 VPS 安装了 kloxowebmin 并在我的 VPS 上运行多个域。

我已经通过 REPELYUM 安装了 nginx 这是我的 /etc/nginx/nginx.conf 文件在此 link 中给出.

我将 apache 端口更改为 8080 并重新启动服务进行更改并启动 nginx,但出现了一些问题。

当我尝试访问我的 centos vps 上的每个域时,我会看到 APACHE START PAGE (WELCOME PAGE),当我在浏览器中输入我的 VPS IP 时,如 x.x.x.x,我面对 NGINX START PAGE (WELCOME PAGE)

我希望 nginx 为我的静态文件提供服务并将动态文件重定向到 Apache 以获得更好的性能。

最佳答案

Nginx Http Server 一书中有一个示例,第 235 页。

server {
server_name .example.com;
root /home/example.com/www;
location ~* \.php.$ {
# Proxy all requests with an URI ending with .php*
# (includes PHP, PHP3, PHP4, PHP5...)
proxy_pass http://127.0.0.1:8080;
}
location / {
# Your other options here for static content
# for example cache control, alias...
expires 30d;
}
}

关于linux - nginx 作为运行 apache 的反向代理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14000467/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com