|
1 |
| -## development notes |
| 1 | +# Stash |
2 | 2 |
|
3 |
| -Use mkcert for local certificate |
| 3 | +A proxy that caches resources for offline use. |
4 | 4 |
|
5 | 5 | ```shell
|
6 |
| -# install mkcert |
| 6 | +Usage: stash --cert-file=STRING --key-file=STRING [flags] |
| 7 | + |
| 8 | +Flags: |
| 9 | + -h, --help Show context-sensitive help. |
| 10 | + --port=9999 Listen on this port ($STASH_PORT). |
| 11 | + --dir=".stash" Path to cache directory ($STASH_DIR) |
| 12 | + --hosts=HOSTS,... Cache responses from these hosts ($STASH_HOSTS) |
| 13 | + --cert-file=STRING Path to CA certificate file ($STASH_CERT_FILE) |
| 14 | + --key-file=STRING Path to CA private key file ($STASH_KEY_FILE) |
| 15 | + --[no-]cors Include CORS support (on by default). |
| 16 | + --log-level="info" Log level ($STASH_LOG_LEVEL) |
| 17 | + --log-format="text" Log format ($STASH_LOG_FORMAT) |
| 18 | +``` |
| 19 | + |
| 20 | +## Installation |
| 21 | + |
| 22 | +The `stash` program can be installed by downloading one of the archives from [the latest release](https://github.com/tschaub/stash/releases). |
| 23 | + |
| 24 | +Extract the archive and place the `stash` executable somewhere on your path. See a list of available commands by running `stash` in your terminal. |
| 25 | + |
| 26 | +Homebrew users can install the `stash` program with [`brew`](https://brew.sh/): |
| 27 | + |
| 28 | +```shell |
| 29 | +brew update |
| 30 | +brew install tschaub/tap/stash |
| 31 | +``` |
| 32 | + |
| 33 | +## Usage |
| 34 | + |
| 35 | +In order to proxy https resources, you'll need to set up a locally trusted development certificate. Fortunately, this is easy with [`mkcert`](https://github.com/FiloSottile/mkcert/). |
| 36 | + |
| 37 | +To install a locally trusted development certificate: |
| 38 | + |
| 39 | +```shell |
| 40 | +# install mkcert if you haven't already |
7 | 41 | brew install mkcert
|
8 | 42 |
|
9 | 43 | # set up certificate
|
10 | 44 | mkcert -install
|
| 45 | +``` |
| 46 | +Next, you'll need to determine the location of the certificate files. |
11 | 47 |
|
12 |
| -# get location of files |
13 |
| -mkcert -CAROOT |
| 48 | +```shell |
| 49 | +# get location of *.pem files |
| 50 | +find "$(mkcert -CAROOT)" -name "*.pem" |
14 | 51 | ```
|
15 | 52 |
|
16 |
| -Launch Chrome with proxy server set: |
| 53 | +Make note of the location of the certificate `rootCA.pem` and key `rootCA-key.pem` files. You'll use the path to the `rootCA.pem` file in the `--cert-file` argument and the path to `rootCA-key.pem` in the `--key-file` argument to `stash`. |
| 54 | + |
| 55 | +With `stash` running, you can configure your browser to use it as a proxy. For example, to launch Chrome using `stash` as a proxy do this: |
17 | 56 |
|
18 | 57 | ```shell
|
| 58 | +# assuming Chrome is not already running |
19 | 59 | open -a "Google Chrome" --args --proxy-server="127.0.0.1:9999"
|
20 | 60 | ```
|
21 |
| - |
22 |
| -Ideas: |
23 |
| - * maybe use symbolic link from extensionless file to file with extension to get content-type from the file server |
|
0 commit comments