`
sillycat
  • 浏览: 2552563 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

Parse and Heroku Service(4)SSL Endpoint

 
阅读更多
Parse and Heroku Service(4)SSL Endpoint

1 Overview
If we need a customized domain, we may need to pay some extra money to buy the service
https://elements.heroku.com/addons/ssl

> heroku addons:create ssl:endpoint

Steps to SSL
1 Purchase an SSL certificate from your SSL provider
2 Provision an SSL endpoint from Heroku
3 Upload the certificate to Heroku
4 Update your DNS settings to reference the new SSL endpoint URL

For our case, we already have the SSL certificate.

2 Setting up SSL on Heroku

In the app, enable the plugins
>heroku addons:create ssl:endpoint

Add the key
> heroku certs:add server.crt server.key

At the end of this step, we will have a URL.

Verify the details
> heroku certs

> heroku certs:info

At this point, if we visit the URL displayed in the previous step, we will have an exception as follow:
www.example.com doesn’t match example-2121.herokussl.com

That is right. SSL is working there.

DNS and Domain Configuration
> heroku domains:add www.example.com

forward the DNS to our herokussl.com, for example:

Record       Name       Target
CNAME     www          example-2121.herokussl.com.
CNAME     *                 example-2121.herokussl.com.

Verify the SSL
> curl -kvI https://www.example.com

3 Advanced Operation
Update the Certificate
>heroku certs:update server.crt server.key

Undo the Update
> heroku certs:rollback

Remove certificate
> heroku certs:remove

Tips:
A .csr file is a certificate signing request, which initiates your certificate request with a certificate provider and contains administrative information about your organization.

A .key file is the private key used for your site’s SSL-enabled requests.

.pem and .crt extensions are often used interchangeably and are both base64 ASCII encoded files. The technical difference is that .pem files contain both the certificate and key whereas a .crt file only contains the certificate.

References:
https://devcenter.heroku.com/articles/ssl-endpoint#overview
分享到:
评论

相关推荐

    Beginning App Development with Parse and PhoneGap 无水印pdf 0分

    Using Facebook’s Parse as backend service, and Adobe’s PhoneGap (or Cordova) as a mobile development framework, building a highly customizable application is easier than you can imagine. A basic ...

    [iOS] Parse 应用开发 (iOS SDK 实现) (英文版)

    Build your applications using Parse iOS which serves as a complete cloud-based backend service Understand and write your code on cloud to minimize the load on the client side Learn how to create your ...

    excel_parse

    python parse and write excel

    CommandScript And XmlParse

    标题“CommandScript And XmlParse”涉及的是一个关于命令脚本处理和XML解析的议题。在这个主题中,我们主要探讨两个核心概念:CommandScript和XmlParse。CommandScript通常指的是使用编程语言编写的一系列命令,...

    Laravel开发-laravel-parse

    在本文中,我们将深入探讨Laravel开发中的一个重要组件——laravel-parse。这是一个专门为Laravel框架设计的Parse SDK桥接器,允许开发者轻松地在Laravel应用程序中集成Parse服务。Parse是一个强大的后端即服务平台...

    h264_parse解析工具

    《深入理解H264解析工具——h264_parse》 在数字视频编码领域,H.264(也称为AVC,Advanced Video Coding)是广泛应用的一种高效视频压缩标准。它以其高压缩率和良好的图像质量,在互联网、电视广播、移动通信等...

    Laravel开发-laravel-parse-sdk

    在本文中,我们将深入探讨Laravel开发中的一个重要组件——laravel-parse-sdk。这个SDK是专门为Laravel 5设计的,用于连接和操作Parse服务,它允许开发者在自托管的Parse服务器上存储和管理数据,从而扩展了Laravel...

    JSON2.JS JSON.JS JSON_PARSE.JS

    method and a parse method. The parse method uses the eval method to do the parsing, guarding it with several regular expressions to defend against accidental code execution hazards. On current ...

    前端开源库-parse5-htmlparser2-tree-adapter

    在`parse5-master`这个压缩包中,很可能包含了parse5库的源码和相关资源,你可以通过阅读源码、查看示例和文档来更深入地理解这个库的工作原理,以及如何有效地使用`parse5-htmlparser2-tree-adapter`。同时,熟悉这...

    video_parse.rar

    4. 触发分帧操作,工具会读取视频文件,逐帧处理并保存为图片格式,如JPG或PNG。 5. 分帧完成后,检查输出目录,确认图像文件是否按预期生成。 视频分帧的应用场景非常广泛,例如在计算机视觉、机器学习、视频编辑...

    iOS eCommerce App Development with Parse(Apress,2015).pdf

    iOS eCommerce App Development with Parse uses a real-world app example to teach you how to build a complete eCommerce iPhone app powered by Parse—the most popular and powerful Platform as a Service ...

    txt parse java file

    txt parse java file

    backports.ssl_match_hostname-3.4.0.2

    《Python中的backports.ssl_match_hostname模块详解及其在Tornado中的应用》 在Python的世界里,安全性和稳定性是至关重要的。特别是在网络通信中,SSL/TLS协议的使用是保证数据传输安全的基本手段。然而,对于一些...

    matlab开发-parse

    在MATLAB开发中,"parse"通常指的是对输入的数据或字符串进行解析,以便提取有用的信息或执行特定操作。MATLAB提供了强大的字符串处理功能,包括正则表达式、字符串数组和函数,来帮助开发者进行复杂的解析任务。在...

    Parse Generator.rar

    "Parse Generator.rar" 是一个与编译原理相关的压缩文件,其中包含了名为 "ParGen.exe" 的可执行程序。这个程序通常被用作编译器设计课程或实验中的解析器生成工具。在计算机科学中,编译原理是研究如何将高级编程...

    实现类似av_parser_parse2功能

    本篇文章将深入探讨如何实现一个类似`av_parser_parse2`的功能,这是FFmpeg中用于解析媒体数据的关键函数。我们将讨论NAL单元(Network Abstraction Layer Unit)在H264视频解码中的作用,以及`av_parser_parse2`在...

    parse编译原理c代码

    标题 "parse编译原理c代码" 指的是一个基于C语言实现的编译器前端,其中包含了词法分析(scanner或lexical analysis)和语法分析(parse或parsing)两个关键阶段。描述中的"编译器(scaner&parse),自己做的scaner和...

    XMLParse

    4. **错误处理**:XMLParse类应该包含了处理解析错误的机制,例如XML文档格式不正确、语法错误等。这通常通过抛出异常或者返回错误代码来实现。 5. **性能优化**:对于大型XML文件,解析过程可能会消耗大量时间和...

    利用C#实现SSLSocket加密通讯的方法详解

    「C#实现SSLSocket加密通讯方法详解」 在网络通讯中,安全性是一个非常重要的方面,而SSL/TLS协议则是最常用的加密通讯协议之一。C#作为一个强大的编程语言,可以轻松地实现SSL/TLS协议的加密通讯。下面将详细介绍...

Global site tag (gtag.js) - Google Analytics