我如何在Laragon中将HTTP重定向到HTTPS

时间:2019-08-17 13:37:17

标签: apache ssl redirect telegram laragon

我想对Laragon的{​​{1}}机器人使用Windows Telegram。 我使用let's encrypt来激活webhook。 我使用手动验证创建了SSL certificate个下载的zip证书文件,并将其替换为

.well-known

现在,当我想使用https://developerpiel.com(我的域)浏览器时,向我展示/etc/appache2/sll. 。我用

ssl is actived by letsencrypt

及其返回我

https://api.telegram.org/bot(token)/setWebhookurl=https://developerpie.com/robot/bot.php

但是当我想使用{ "ok": true, "result": true, "description": "Webhook is already set" } api方法时,无法从Telegram webhook接收任何数据。 我认为如果请求自动重定向到Telegram而不是HTTPS

,它将解决

如何在Windows上用HTTP对其进行配置?

我找到了答案编辑的一半:

Laragon

我现在在加载网站时使用此配置,自动浏览器会自动重定向到<VirtualHost *:80> ServerName www.developerpie.com Redirect permanent / https://www.developerpie.com/ </VirtualHost> <VirtualHost _default_:443> <Directory "C:/laragon/www/"> AllowOverride All Require all granted </Directory> SSLEngine on SSLCertificateFile C:/laragon/etc/ssl/laragon.crt SSLCertificateKeyFile C:/laragon/etc/ssl/laragon.key </VirtualHost> ,但Telegram Web钩子仍然无法工作

1 个答案:

答案 0 :(得分:2)

这是来自Telegram服务器的结果:

{
  "ok": true,
  "result": {
    "url": "https://developerpie.com/robot/bot.php",
    "has_custom_certificate": false,
    "pending_update_count": 21,
    "last_error_date": 1566230202,
    "last_error_message": "SSLrror {error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed}",
    "max_connections": 40
  }
}

,此图片是SSLShoppre.com进行的SSL测试的结果 SSL Shopper test result 因此请遵循此link