带有 litespeed 域的 Nginx - 子域

问题描述 投票:0回答:0

我在 Ubuntu 服务器上安装了 Litespeed 和 Nginx 网络服务器

主域从网络面板链接到 Litespeed,我使用数字海洋 api.example.com 创建了一个子域并尝试连接到 Nginx 块,但它总是将我重定向到 404 Litespeed 页面

Nginx 区块

server {
        listen 8080;
        listen [::]:8080;

        root /var/www/api.example.com/html;
        index index.html index.htm index.nginx-debian.html;

        server_name api.example.com www.api.example.com;

        location / {
                try_files $uri $uri/ =404;
        }
}

还有来自 Litespeed 的主域 vHost 文件

docRoot                   $VH_ROOT/public_html
vhDomain                  $VH_NAME
vhAliases                 www.$VH_NAME
adminEmails               [email protected]
enableGzip                1
enableIpGeo               1

index  {
  useServer               0
  indexFiles              index.php, index.html
}

errorlog $VH_ROOT/logs/$VH_NAME.error_log {
  useServer               0
  logLevel                WARN
  rollingSize             10M
}

accesslog $VH_ROOT/logs/$VH_NAME.access_log {
  useServer               0
  logFormat               "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i""
  logHeaders              5
  rollingSize             10M
  keepDays                10  
  compressArchive         1
}

scripthandler  {
  add                     lsapi:egypt3086 php
}

extprocessor egypt3086 {
  type                    lsapi
  address                 UDS://tmp/lshttpd/egypt3086.sock
  maxConns                10
  env                     LSAPI_CHILDREN=10
  initTimeout             600
  retryTimeout            0
  persistConn             1
  pcKeepAliveTimeout      1
  respBuffer              0
  autoStart               1
  path                    /usr/local/lsws/lsphp81/bin/lsphp
  extUser                 egypt3086
  extGroup                egypt3086
  memSoftLimit            2047M
  memHardLimit            2047M
  procSoftLimit           400
  procHardLimit           500
}

phpIniOverride  {

}

module cache {
 storagePath /usr/local/lsws/cachedata/$VH_NAME
}

rewrite  {
 enable                  1
  autoLoadHtaccess        1
}

context /.well-known/acme-challenge {
  location                /usr/local/lsws/Example/html/.well-known/acme-challenge
  allowBrowse             1

  rewrite  {

  }
  addDefaultCharset       off

  phpIniOverride  {

  }
}


vhssl  {
  keyFile                 /etc/letsencrypt/live/exmample.com/privkey.pem
  certFile                /etc/letsencrypt/live/exmample.com/fullchain.pem
  certChain               1
  sslProtocol             24
  enableECDHE             1
  renegProtection         1
  sslSessionCache         1
  enableSpdy              15
  enableStapling           1
  ocspRespMaxAge           86400
}

ubuntu nginx nginx-reverse-proxy litespeed
© www.soinside.com 2019 - 2024. All rights reserved.