Replies: 2 comments 3 replies
-
You will have to add the CA or the cert on machine 1. This is explained in https://github.com/FiloSottile/mkcert#installing-the-ca-on-other-systems |
Beta Was this translation helpful? Give feedback.
3 replies
-
Fantastic. I missed that in the FAQ.
BTW, I attended a Drupal Camp CO at the University (I'm in Westminster)
before that lovely COVID shut everything down and heard you speak at a
DDEV session. Really appreciate what you've done for a large community of
users.
Thanks again,
Scott
…On Tue, Feb 7, 2023 at 7:17 PM Randy Fay ***@***.***> wrote:
If they're both on the same host, you shouldn't have to do anything except
what's in
https://ddev.readthedocs.io/en/latest/users/usage/faq/#can-different-projects-communicate-with-each-other
- but I do think you might need the
external_links:
- "ddev-router:projectb.ddev.site"
Without that, project a thinks that *.ddev.site resolves to localhost, so
it tries to talk to itself.
—
Reply to this email directly, view it on GitHub
<#4621 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AOKRPILUZVHAXFQE5HDURFLWWL637ANCNFSM6AAAAAAUUR5ZFA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
php 8.1, Drupal 9.4.10
mkcert shows:
The local CA is already installed in the system trust store!
The local CA is already installed in the Firefox trust store!
The local CA is already installed in Java's trust store!
I have two ddev projects running on local dev machine and they work great.
I'm trying to make an API call from https on machine 1 to https on machine 2 hitting /oauth/token using curl_exec with good options and call is returning false with exception:
SSL: no alternative certificate subject name matches target host name 'united-road-1.ddev.site'
the ssl cert on machine one is valid with https://ipm.ddev.site
Even tried:
// VERY VERY DANGEROUS!!! FOR TESTING LOCAL ONLY IN DDEV
//curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
//curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
and with those opts, it returns invalid client.
Postman with same credentials does get a good oauth token returned.
:)
Beta Was this translation helpful? Give feedback.
All reactions