How to configure proxy in Vite?
Turns out it’s needed to specify secure flag to false like this: proxy: { ‘/api’: { target: ‘https://localhost:44305’, changeOrigin: true, secure: false, ws: true, } } Related github issue
Turns out it’s needed to specify secure flag to false like this: proxy: { ‘/api’: { target: ‘https://localhost:44305’, changeOrigin: true, secure: false, ws: true, } } Related github issue
Here’s what I had to do to setup basic auth on Ubuntu 14.04 (didn’t find a guide anywhere else) Basic squid conf /etc/squid3/squid.conf instead of the super bloated default config file auth_param basic program /usr/lib/squid3/basic_ncsa_auth /etc/squid3/passwords auth_param basic realm proxy acl authenticated proxy_auth REQUIRED http_access allow authenticated # Choose the port you want. Below we … Read more