Phabricator Notification Server SSL错误

mil*_*ven 6 apache ssl websocket phabricator lets-encrypt

我的Ubuntu 18.04服务器使用Apache 2作为Web服务器,我使用letencrypt为phabricator vhost域创建了一个SSL

  sudo certbot --apache -d phabricator.xxxx.com
Run Code Online (Sandbox Code Playgroud)

我试图为我的制颤器设置notification.servers配置,如下所示:

[
  {
    "type": "client",
    "host": "phabricator.xxxx.com",
    "port": 22280,
    "protocol": "https"
  },
  {
    "type": "admin",
    "host": "127.0.0.1",
    "port": 22281,
    "protocol": "http"
  }
]
Run Code Online (Sandbox Code Playgroud)

但是我在检查通知服务器的配置页面时显示: 在此处输入图片说明

这是vhost配置文件phabricator.xxxx.com.confphabricator.xxxx.com-le-ssl.conf

<IfModule mod_ssl.c>
<VirtualHost *:443>
     ServerAdmin xxx@xxxx.com
     DocumentRoot /var/www/html/repository/phabricator/webroot
     ServerName phabricator.xxxx.com
     ServerAlias www.phabricator.xxxx.com

           RewriteEngine on
           RewriteRule ^/rsrc/(.*)     -                       [L,QSA]
           RewriteRule ^/favicon.ico   -                       [L,QSA]
           RewriteCond %{REQUEST_URI}  ^/ws/
           RewriteCond %{QUERY_STRING} transport=websocket
           RewriteRule /(.*)           ws://localhost:22280/$1 [B,P,L]
           RewriteRule ^(.*)$          /index.php?__path__=$1  [B,L,QSA]

     ErrorLog ${APACHE_LOG_DIR}/error.log
     CustomLog ${APACHE_LOG_DIR}/access.log combined

     <Directory /var/www/html/repository/phabricator/webroot/>
            Require all granted
        LimitRequestBody  45242880
    </Directory>

    <IfModule mpm_itk_module>
      AssignUserId phab phab
    </IfModule>    

SSLCertificateFile /etc/letsencrypt/live/phabricator.xxxx.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/phabricator.xxxx.com/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>
</IfModule>
Run Code Online (Sandbox Code Playgroud)

我已经添加了/var/www/html/repository/phabricator/support/preamble.php,内容如下:

<?php

$_SERVER['HTTPS'] = true; 
Run Code Online (Sandbox Code Playgroud)

小智 -1

看起来通知服务器配置中的端口应该是 443,因为这是 Apache 中主机的端口。22280 将是 Aphlict 使用的端口,它不使用 https。