Heim >Backend-Entwicklung >PHP-Tutorial >TYK配置SSL方案

TYK配置SSL方案

WBOY
WBOYOriginal
2016-07-29 08:57:021237Durchsuche

一、nginx+tyk(tyk仍然使用http,nginx使用https+proxy_pass转发

    测试可行

二、tyk配置文件配置使用https

参考链接:https://github.com/TykTechnologies/tyk/issues/181

1、修改配置文件:/opt/tyk-gateway/tyk.conf

    修改端口为443

    修改hostname为:mydomain.com

    添加配置:

<span>"http_server_options": {
    "use_ssl": true,
    "server_name": "*.mydomain.com",
    "min_version": 2,
    "certificates": [
      {
        "domain_name": "*.mydomain.com",
        "cert_file": "/opt/tyk-gateway/ssl/mydomain.crt",
        "key_file": "/opt/tyk-gateway/ssl/mydomain.key"
      }
    ]
  }</span>

2、修改DashBoard的配置文件:/opt/tyk-dashboard/tyk_analytics.conf

    修改tyk_api_config下的Host为https://mydomain.com

    修改tyk_api_config下的Port为:443

    

然后,重启下tyk的所有服务即可

以上就介绍了TYK配置SSL方案,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php的mysqlmysqliPDO一mysqlNächster Artikel:PHP - Traversable接口详解