How configure charles-proxy to work with chrome in linux [closed] - google-chrome

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
I try setting the chrome proxy:
google-chrome --proxy-server=127.0.0.1:8888
Chrome opens a new window, but charles does not capture any.

Charles opens up a proxy usually at localhost:8888 (you can change it in the Proxy > Proxy settings... menu), so what you have to do is simply add this proxy server to your connections.
The best way to achieve that I've found is by installing the Proxy SwitchyOmega extension, configuring the proxy parameters as told before and switching manually whenever you want to track http requests.
It's not as easy as it is on windows but works fine for me.

Related

Why there is no preflight Private Network Access request in chrome 99 and above? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 11 months ago.
Improve this question
According to this document: https://developer.chrome.com/blog/private-network-access-preflight/#preflight-requests. Chrome should enable preflight Private Network Access request since chrome 98. It seems that it was working correctly and I did a setup my configuration to this new feature.
But now in versions from this page (99, 100, 101): https://www.chromium.org/getting-involved/dev-channel/ in network console I am observing only regular requests in network console. Could someone please explain this?
Thanks!
I found information, that it has been rolled back for now.

google cloud shell is temporarily unavailable try after few minutes [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
while activating my cloud shell it is showing google cloud shell is temporarily unavailable try after few minutes.Please help me to resolve this.
Append &cloudshell=true in the end of the URL and refresh.
If still does not work, clear cookies or try in Incognito mode.
If still does not work, perhaps it's just temporary problem. Wait a couple of minutes hence the problem might be server-side.

Website shows secure on browser, but unsecure (without SSL certifcate) in mobile [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
I think I successfully installed SSL certificate to my website, it shows secure on browser:
but when I open website in chrome mobile browser, it says:
Your connection to this site is not secure
You should not enter any sensitive information on this site ....
Is there any problem installing SSL certificate. I restarted my mobile, deleted all cookies, stories :( and still same thing. Any clue?
update: Server side configuration
server {
listen 80;
server_name IP_Address domain_name.com;
return 301 https://$server_name$request_uri;
}
Try changing the URL in the address bar of your mobile web browser from http://... to https://....
If that fixes the problem, you will need to create a redirect that automatically does this for your visitors.

Chrome Extension Not Stopping [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I am encountering a problem on Google Chrome. There are multiple chrome tasks running in the windows task manager, and when I look at the chrome task manager, there is an extension that consumes a lot of energy. When I kill it, it reappears. The extension has no name (written as 'Extension: '), and since it doesn't close I'm not even able to reinstall the software. I have also tried removing ALL extensions, it still reappears.
Kindly do help since it's slowing Chrome down.

How to access two servers on one domain [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
Port 80 is forwarded to a server on my network which has links to the different projects I'm working on, how could I allow people to connect to the server running on my laptop when I'm using it? I would obviously not prefer to change my router settings frequently to port forward to my laptop. I want the user to access my domain and maybe have a set of links which will be described as static and another set which will have a description cautioning the user that said links will only work when I am online and they would somehow redirect to my laptop. (Lamp Server)
Well, if I understood correctly your question, you should configure your laptop as a reverse proxy for your main server.
As you said, you should have a set of links which will redirect to your laptop (via reverse proxy config), but of course these links will work only when your laptop is available.