mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-23 15:22:40 +01:00
Add resources/ssl/custom.pem to .gitignore
Summary: When arcanist connects to a phorge site which uses an SSL certificate signed by a local CA, then the client needs to have a resources/ssl/custom.pem file as per resources/ssl/README As this is client specific it should be in the .gitignore file. Also update resources/ssl/README to replace [Pp]habricator with [Pp]horge. Test Plan: ``` touch resources/ssl/custom.pem git status ``` The 'git status' should show no changes. Reviewers: O1 Blessed Committers, valerio.bozzolan Reviewed By: O1 Blessed Committers, valerio.bozzolan Subscribers: speck, tobiaswiese, valerio.bozzolan, Matthew, Cigaryno Differential Revision: https://we.phorge.it/D25304
This commit is contained in:
parent
677e117b97
commit
8130241a11
2 changed files with 5 additions and 4 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -11,6 +11,7 @@
|
||||||
# User extensions
|
# User extensions
|
||||||
/externals/includes/*
|
/externals/includes/*
|
||||||
/src/extensions/*
|
/src/extensions/*
|
||||||
|
/resources/ssl/custom.pem
|
||||||
|
|
||||||
# XHPAST
|
# XHPAST
|
||||||
/support/xhpast/*.a
|
/support/xhpast/*.a
|
||||||
|
|
|
@ -34,11 +34,11 @@ If "custom.pem" is present, that file will be used instead of "default.pem".
|
||||||
If you receive errors using your "custom.pem" file, you can test it directly
|
If you receive errors using your "custom.pem" file, you can test it directly
|
||||||
with `curl` by running a command like this:
|
with `curl` by running a command like this:
|
||||||
|
|
||||||
curl -v --cacert path/to/your/custom.pem https://phabricator.example.com/
|
curl -v --cacert arcanist/resources/ssl/custom.pem https://phorge.example.com/
|
||||||
|
|
||||||
Replace "path/to/your/custom.pem" with the path to your "custom.pem" file,
|
Replace "arcanist/resources/ssl/custom.pem" with the path to your "custom.pem"
|
||||||
and replace "https://phabricator.example.com" with the real URL of your
|
file, and replace "https://phorge.example.com" with the real URL of your Phorge
|
||||||
Phabricator install.
|
install.
|
||||||
|
|
||||||
The initial lines of output from `curl` should give you information about the
|
The initial lines of output from `curl` should give you information about the
|
||||||
SSL handshake and certificate verification, which may be helpful in resolving
|
SSL handshake and certificate verification, which may be helpful in resolving
|
||||||
|
|
Loading…
Reference in a new issue