The Internet, 2024/03/15

Introduction

[TODO]

Installation

Download Caddy from the official website
Install mkcert: brew install mkcert (or check here for other ways)

Create certificates

Create a folder, let’s call it extension_server.

mkdir extension_server
cd extension_server

Create the certificates with mkcert

mkcert shopify.localhost

Caddy

Create a config file for Caddy with this content and call it Caddyfile

shopify.localhost

reverse_proxy /* 127.0.0.1:8989
tls ./shopify.localhost.pem ./shopify.localhost-key.pem

Run Caddy in the same folder

caddy run

Run dev

Now you can use https://shopify.localhost as your development server. Run your dev like this

pnpm dev --tunnel-url https://shopify.localhost:8989