运行 生产中的 Mercure:未找到 404

Run Mercure on production : 404 no found

我联系你是因为我无法mercure投入生产。

二进制预构建 运行 很好,但是当我尝试连接到集线器时,我收到 404 未找到。

这是我的命令 运行 :

sudo MERCURE_PUBLISHER_JWT_KEY='eyJhbGciOiJIUzI1NiIsInR5cCI6...' MERCURE_SUBSCRIBER_JWT_KEY='eyJhbGciOiJIUzI1NiIsInR5cCI6...' SERVER_NAME=:3000 ./mercure run

服务器启动显然没有任何问题:

2022/02/15 17:38:09.919 INFO    using adjacent Caddyfile
2022/02/15 17:38:09.920 WARN    input is not formatted with 'caddy fmt' {"adapter": "caddyfile", "file": "Caddyfile", "line": 3}
2022/02/15 17:38:09.921 INFO    admin   admin endpoint started  {"address": "tcp/localhost:2019", "enforce_origin": false, "origins": ["[::1]:2019", "127.0.0.1:2019", "localhost:2019"]}
2022/02/15 17:38:09.922 INFO    tls.cache.maintenance   started background certificate maintenance      {"cache": "0xc0000cb7a0"}
2022/02/15 17:38:09.935 INFO    tls     cleaning storage unit   {"description": "FileStorage:/root/.local/share/caddy"}
2022/02/15 17:38:09.935 INFO    tls     finished cleaning storage units
2022/02/15 17:38:09.935 INFO    autosaved config (load with --resume flag)      {"file": "/root/.config/caddy/autosave.json"}
2022/02/15 17:38:09.935 INFO    serving initial configuration

我的 .env 配置如下:

###> symfony/mercure-bundle ###
MERCURE_URL=https://monsite.com/.well-known/mercure
MERCURE_PUBLIC_URL=https://monsite.com/.well-known/mercure
MERCURE_JWT_SECRET="eyJhbGciOiJIUzI1NiIsInR5cCI6..."
###< symfony/mercure-bundle ###

我的 CaddyFile :

# Learn how to configure the Mercure.rocks Hub on https://mercure.rocks/docs/hub/config
{
        {$GLOBAL_OPTIONS}
}

{$SERVER_NAME:monsite.com}

log

route {
        encode zstd gzip

        mercure {
                # Transport to use (default to Bolt)
                transport_url {$MERCURE_TRANSPORT_URL:bolt://mercure.db}
                # Publisher JWT key
                publisher_jwt {env.MERCURE_PUBLISHER_JWT_KEY} {env.MERCURE_PUBLISHER_JWT_ALG}
                # Subscriber JWT key
                subscriber_jwt {env.MERCURE_SUBSCRIBER_JWT_KEY} {env.MERCURE_SUBSCRIBER_JWT_ALG}
                # Allow Subscribers
                anonymous
                # Extra directives
                {$MERCURE_EXTRA_DIRECTIVES}
        }

        respond /healthz 200

        respond "Not Found" 404
}

当我尝试通过键入以下命令使用邮递员访问集线器时:

https://monsite.com/.well-known/mercure

我收到 404 未找到。

我在 linux debian 10 和 apache2 下。我不明白我做错了什么。感谢您的帮助。

编辑 21/02/2022

嗨,穆罕默德,这是我所做的:

在 /etc/apache2/sites-available monsite.conf 和 monsite-le-ssl.conf :

ProxyPass /mercure-hub http://localhost:8080/
ProxyPassReverse /mercure-hub http://localhost:8080/

在 Caddyfile 和 Caddyfile.dev 中:

{
        {$GLOBAL_OPTIONS}
        auto_https off }

{$SERVER_NAME::8080}

显然集线器启动良好,我在控制台中没有错误:

debian@vps-...:/var/www/monsite/mercure$ sudo MERCURE_PUBLISHER_JWT_KEY='eyJhbGciOiJIUzI1NiIsInR5cCI6I...' MERCURE_SUBSCRIBER_JWT_KEY='eyJhbGciOiJIUzI1NiIsInR5cCI6I...' ./mercure run -config Caddyfile.dev
2022/02/21 13:31:20.672 INFO    using provided configuration    {"config_file": "Caddyfile.dev", "config_adapter": ""}
2022/02/21 13:31:20.675 WARN    input is not formatted with 'caddy fmt' {"adapter": "caddyfile", "file": "Caddyfile.dev", "line": 3}
2022/02/21 13:31:20.676 INFO    admin   admin endpoint started  {"address": "tcp/localhost:2019", "enforce_origin": false, "origins": ["localhost:2019", "[::1]:2019", "127.0.0.1:2019"]}
2022/02/21 13:31:20.676 INFO    tls.cache.maintenance   started background certificate maintenance      {"cache": "0xc0003fe700"}
2022/02/21 13:31:20.703 INFO    tls     cleaning storage unit   {"description": "FileStorage:/root/.local/share/caddy"}
2022/02/21 13:31:20.703 INFO    tls     finished cleaning storage units
2022/02/21 13:31:20.703 INFO    autosaved config (load with --resume flag)      {"file": "/root/.config/caddy/autosave.json"}
2022/02/21 13:31:20.704 INFO    serving initial configuration

无论是 运行 Caddyfile 还是 Caddyfile.dev,在访问 https://monsite.com/mercure-hub 时,我都会收到 500 错误。

那是我的apache设置。也许对你有帮助。

打开 纳米 /etc/apache2/sites-available/yourdomain.com-le-ssl.conf

<IfModule mod_ssl.c>
<VirtualHost *:443>
        DocumentRoot /var/www/html/yourdomain.com
        DirectoryIndex /index.php
        ServerName yourdomain.com

    #Settings for mercure
        ProxyPass      /mercure-hub     http://localhost:8080
        ProxyPassReverse /mercure-hub   http://localhost:8080


        <Directory /var/www/html/yourdomain.com >
                AllowOverride None
                Order Allow,Deny
                Allow from All
                FallbackResource /index.php
                Options FollowSymLinks MultiViews
        </Directory>

        <Directory /var/www/html/yourdomain.com >
                DirectoryIndex disabled
                FallbackResource disabled
        </Directory>


RewriteEngine on


Include /etc/letsencrypt/options-ssl-apache.conf
#YOUR SSL PEM FİLES
SSLCertificateFile /etc/letsencrypt/live …..
SSLCertificateKeyFile /etc/letsencrypt/live …..


</VirtualHost>
</IfModule>

你的 caddyfile 选项应该是这样的

{
        {$GLOBAL_OPTIONS}
        auto_https off
}

{$SERVER_NAME::8080}#this parameter will run http://localhost:8080

美居命令

MERCURE_PUBLISHER_JWT_KEY='YOUR_KEY' MERCURE_SUBSCRIBER_JWT_KEY='YOUR_KEY' ./mercure run -config Caddyfile

您可以尝试使用 Caddyfile.dev 进行测试。

MERCURE_PUBLISHER_JWT_KEY='YOUR_KEY' MERCURE_SUBSCRIBER_JWT_KEY='YOUR_KEY' ./mercure run -config Caddyfile.dev

此设置后,您的 mercure 将 运行 您的域。com/mercure-hub

经过一些挖掘,我试图找出它返回 500 错误的原因。我去了 apache 日志,我收到了这条错误消息:

"No protocol handler was valid for the URL /. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule"

所以我安装了缺少的组件:

sudo a2enmod ssl
sudo a2enmod proxy
sudo a2enmod proxy_balancer
sudo a2enmod proxy_http

我还通过在 mercure-hub 末尾添加斜杠来修改代理 url,否则我会收到 404 错误:

 ProxyPass /mercure-hub/ http://localhost:8080/
 ProxyPassReverse /mercure-hub/ http://localhost:8080/

重新启动 apache,并更新了我的 .env 中的 Url:

MERCURE_URL=https://monsite.com/mercure-hub/.well-known/mercure
MERCURE_PUBLIC_URL=https://monsite.com/mercure-hub/.well-known/mercure 

成功了,非常感谢!