Open tonyclemmey opened 4 years ago
Hello,
I am thinking you have https://site1.test
in your wpackio.server.js
file. Note the https
. If this is the case, then kindly access the development server from https://192.168.0.36:3000
, ie from https
link.
Possibly related to #454
With the info provided by @swashata I got it working like this:
host: "site1.test",
proxy: "https://site1.test",
bsOverride: {
https: {
key: "/Users/<user>/.config/valet/Certificates/site1.test.key",
cert: "/Users/<user>/.config/valet/Certificates/site1.test.crt",
},
},
Replace <user>
in this example for the certificates
Thank you @michaelw85 for your input. It would be great if this can be added to the Tutorial Section of the documentation. Let me know if you are willing to do that. I will guide you through the process.
Hello,
I am a first time user trying to use wpack and my existing setup consists of using Laravel Homestead as the development server for Wordpress site. My homestead YAML configuration is pretty standard as you can see below.
& in my hosts file
192.168.10.10 site1.test
I have an existing WordPress install in the root of this site (with trusted SSL) and I have followed the steps to install in the theme dir.
npx @wpackio/cli
npm run bootstrap
composer require wpackio/enqueue
npm start
http://192.168.0.36:3001 displays the BrowserSync page, but http://192.168.0.36:3000 seems to just loop/timeout loading.
I can run
$ npm run build
also with no issues.So it just the wpack.io server on port 3000 not loading for me. Any guidance would be appreciated
Tony