1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-01-29 18:04:17 +02:00
Asim Aslam 62801c3d68 update
2021-10-13 13:31:23 +01:00
..
2021-10-13 13:31:23 +01:00
2021-10-13 13:31:23 +01:00
2021-10-12 12:55:53 +01:00

Secure

This example demonstrates how to use tls self signed certs with a micro service.

The micro transport has a secure option which will generate a cert on startup. Clients will use insecure skip verify by default.

Contents

  • srv - greeter server with secure transport that generates a tls self signed cert
  • cli - greeter client with secure transport that uses insecure skip verify

Micro Toolkit

The cli example can be used with the micro toolkit for a secure client

Create a tls.go file

package main

import (
	"go-micro.dev/v4/client"
	"go-micro.dev/v4/transport"
)

func init() {
	client.DefaultClient.Init(
		client.Transport(
			transport.NewTransport(transport.Secure(true)),
		),
	)
}

Build the toolkit with the tls.go file

cd github.com/micro/micro
go build -o micro main.go tls.go