Skip to content

Commit

Permalink
build: updated default config file
Browse files Browse the repository at this point in the history
  • Loading branch information
chetan committed Dec 8, 2020
1 parent 7ef83ae commit 07a915f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,19 @@ brews:
#http = 80
#https = 443
# The following paths are set explicitly to facilitate running as root
# mkcert's CAROOT path
# Set to output of `mkcert -CAROOT`
caroot_path = "#{`mkcert -CAROOT`.strip}"
# Path where generated certificates should be stored
cert_path = "#{ENV['HOME']}/.vproxy"
# Path to mkcert program
mkcert_path = "#{`which mkcert`.strip}"
[client]
#host = "127.0.0.1"
#http = 80
Expand Down
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,8 @@ build-mac:
release:
goreleaser release --rm-dist

build-brew:
go build -o vproxy ./bin/vproxy/
sudo mv vproxy /usr/local/opt/vproxy/bin/vproxy
sudo killall vproxy

0 comments on commit 07a915f

Please sign in to comment.