Skip to content

Commit

Permalink
chore: release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Nov 16, 2024
1 parent 10bdade commit fe84d43
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 17 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
# Changelog


## v0.1.1...main

[compare changes](https://github.com/stacksjs/rpx/compare/v0.1.1...main)

### 🚀 Enhancements

- Allow for `https` boolean ([6153960](https://github.com/stacksjs/rpx/commit/6153960))

### 🏡 Chore

- Export cleanup ([5565a04](https://github.com/stacksjs/rpx/commit/5565a04))
- Reset tests ([a758d40](https://github.com/stacksjs/rpx/commit/a758d40))
- Update readme ([10bdade](https://github.com/stacksjs/rpx/commit/10bdade))

### ❤️ Contributors

- Chris ([@chrisbbreuer](http://github.com/chrisbbreuer))

## v0.1.0...main

[compare changes](https://github.com/stacksjs/rpx/compare/v0.1.0...main)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stacksjs/rpx",
"type": "module",
"version": "0.1.1",
"version": "0.2.0",
"description": "A modern reverse proxy.",
"author": "Chris Breuer <[email protected]>",
"license": "MIT",
Expand Down
33 changes: 17 additions & 16 deletions reverse-proxy.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,23 @@ import path from 'node:path'
const config: ReverseProxyOptions = {
from: 'localhost:5173',
to: 'stacks.localhost',
https: {
domain: 'stacks.localhost',
hostCertCN: 'stacks.localhost',
caCertPath: path.join(os.homedir(), '.stacks', 'ssl', `stacks.localhost.ca.crt`),
certPath: path.join(os.homedir(), '.stacks', 'ssl', `stacks.localhost.crt`),
keyPath: path.join(os.homedir(), '.stacks', 'ssl', `stacks.localhost.crt.key`),
altNameIPs: ['127.0.0.1'],
altNameURIs: ['localhost'],
organizationName: 'stacksjs.org',
countryName: 'US',
stateName: 'California',
localityName: 'Playa Vista',
commonName: 'stacks.localhost',
validityDays: 180,
verbose: false,
},
https: true,
// https: {
// domain: 'stacks.localhost',
// hostCertCN: 'stacks.localhost',
// caCertPath: path.join(os.homedir(), '.stacks', 'ssl', `stacks.localhost.ca.crt`),
// certPath: path.join(os.homedir(), '.stacks', 'ssl', `stacks.localhost.crt`),
// keyPath: path.join(os.homedir(), '.stacks', 'ssl', `stacks.localhost.crt.key`),
// altNameIPs: ['127.0.0.1'],
// altNameURIs: ['localhost'],
// organizationName: 'stacksjs.org',
// countryName: 'US',
// stateName: 'California',
// localityName: 'Playa Vista',
// commonName: 'stacks.localhost',
// validityDays: 180,
// verbose: false,
// },
verbose: false,
}

Expand Down

0 comments on commit fe84d43

Please sign in to comment.