Browse Source

switching to HTTPS and ignoring the proxy

pull/19/head
Rob Colbert 2 years ago
parent
commit
4c978032e4
  1. 6
      gulpfile.js

6
gulpfile.js

@ -22,11 +22,11 @@ function util_start_browsersync ( ) {
return new Promise((resolve, reject) => {
browserSync.init({
proxy: {
target: 'http://localhost:3420',
target: 'https://dev.sites.digitaltelepresence.com:3420',
ws: true,
},
host: 'localhost',
open: 'local',
host: 'dev.sites.digitaltelepresence.com',
open: 'external',
https: {
key: path.join(__dirname, 'ssl', 'dtp-sites.key'),
cert: path.join(__dirname, 'ssl', 'dtp-sites.crt'),

Loading…
Cancel
Save