The Symbol Syndicate
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Note Insights Sharing URL Help
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    ###### tags: `DevOps` `Symbol Infrastructure` # Symbol Bootstrap HTTPS Upgrade This page describes how community members can upgrade their current nodes to support HTTPS. The plan is to migrate all the Dual and Api nodes from HTTP port 3000 to HTTPS port 3001. We would leave both ports open for a little bit while Symbol and community apps and nodes are migrated over. HTTPS would be required, if not, Explorer won't be able to list your node in the [node list](http://explorer.symbolblockchain.io/nodes), the Desktop Wallet may require it and users may not want to use a non SSL node when connecting to the Symbol network. ## Option 1: Native Rest SSL If you like to use your SSL certificates, you can do so by providing the Base64 of the of Key and Crt files to Bootstrap via a custom preset. Add the `gateways:` section to your custom preset file: ``` # more properties nodes: - friendlyName: My Awesome Node host: my.awesomenode.mycompany.net # more properties gateways: # ADD THIS SECTION - restProtocol: HTTPS openPort: 3001 restSSLCertificateBase64: >- LS0tLS1CRUdJTiBDRVJUSUZ...Base64...== restSSLKeyBase64: >- LS0tLS1CRUdJTiBSU0EgUFJ...Base64...= ``` To get the Base64 of a file, use: ```` cat restSsl.key | base64 -w 0 cat restSsl.crt | base64 -w 0 ```` Copy the outputs and paste them into the custom preset file. The provided certificate needs to be valid for the hostname `my.awesomenode.mycompany.net`. The domain needs to resolve the IP address of your node. The certificates would eventually expire, so you would need to upgrade the custom preset and the nodes before it happens by repeating these steps. This option only leaves HTTPS port 3001 open, there is not HTTP 3000. This is a "hard" migration. Open port 3001 in your firewall or security group, port 3000 can be closed as it's not used anymore. Once the custom preset has been updated, upgrade your node like always: ``` sudo npm install -g symbol-bootstrap cd symbol-node symbol-bootstrap stop cp target backup-target -r symbol-bootstrap start -c custom-preset.yml --upgrade -d ``` PR: https://github.com/symbol/catapult-rest/pull/641 PR: https://github.com/symbol/symbol-bootstrap/pull/284 ## Option 2: Automatic Let's Encrypt Service If desired, Bootstrap adds a fully configured [Http Proxy](https://github.com/SteveLTN/https-portal) service. To enable it, just opt-in by providing the `httpsProxies:` section to your custom preset. ```` # more properties nodes: - friendlyName: My Awesome Node host: my.awesomenode.mycompany.net # more properties httpsProxies: # ADD THIS SECTION - excludeDockerService: false ```` You need to own the domain `my.awesomenode.mycompany.net` and it needs to resolve the IP address of your node. The Let's Encrypt service will handle the certificate creation and renewals for you. Internally, Bootstrap generates a Docker service in the compose file: ```` ### MORE SERVICES https-proxy: container_name: https-proxy image: 'steveltn/https-portal:1' stop_signal: SIGINT working_dir: /symbol-workdir ports: - '80:80' - '3001:443' environment: DOMAINS: 'my.awesomenode.mycompany.net -> http://rest-gateway:3000' WEBSOCKET: 'true' STAGE: production SERVER_NAMES_HASH_BUCKET_SIZE: 128 restart: 'on-failure:2' volumes: - '../gateways/https-proxy:/symbol-workdir:rw' depends_on: - rest-gateway ```` Open ports 3001 and 80 in your firewall or security group. Port 3000 may or may not be closed. Keep it open while migrating your apps... Once the custom preset has been updated, upgrade your node like always: ``` sudo npm install -g symbol-bootstrap cd symbol-node symbol-bootstrap stop cp target backup-target -r symbol-bootstrap start -c custom-preset.yml --upgrade -d ``` The HTTP Proxy option (and the default 3001 port :) ) has been heavily inspired by this great blog https://nemlog.nem.social/blog/58808. Bootstrap bundles this solution. If you have followed the blog, you can keep the solution without modifying Bootstrap or migrate it to the Bootstrap service removing the extra compose file and process. PR: https://github.com/symbol/symbol-bootstrap/pull/284 ## Option 3: Wizard If you are creating a **new node**, the wizard will help you select the right HTTPS configuration generating the custom preset for you. Just run: ``` sudo npm install -g symbol-bootstrap symbol-bootstrap verify symbol-bootstrap wizard ``` And follow the instructions... # Release Plan - [x] Rest HTTPS PR - [x] Bootstrap HTTPS PR - [x] Testnet HTTPS Deploy (ngl-api-* are native, ngl-dual-* are automatic) - [x] Explorer Testnet HTTPS upgrade - [x] Faucet Testnet HTTPS upgrade - [x] Statistics Testnet HTTPS upgrade - [ ] Wallet Tesnet HTTPS PR (https:// and 3001). - [x] Testnet Soak time - [x] Rest release - [x] Bootstrap release - [ ] Mainnet Deploy - [x] HTTPS guide release - [ ] Wallet relese (nodes will be both HTTP and HTTPs for a while) - [x] Explorer and Statistics HTTPS mainnet upgrade - [ ] Shutdown HTTP 3000 eventually

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully