Skip to main content

Questions tagged [http]

For questions about the Hypertext Transfer Protocol (HTTP), which is a network protocol used for transferring content on the World Wide Web.

0 votes
1 answer
20 views

how to use docker with http protocol to login or pull docker images from local nexus repository?

I have two servers with no internet on them.One of them is my nexus repository with so many docker images on it.As I have no internet on them ,I can't pull any image because of no ssl configured.I get ...
mahdi's user avatar
  • 1
0 votes
1 answer
2k views

Ingress ip returns HTTP error DNS_PROBE_FINISHED_NXDOMAIN

I have the next ingress (output of "kubectl get ingress") NAME HOSTS ADDRESS PORTS AGE main * 192.168.39.190 80 46m But when I try to visit that IP address in ...
Adrian Lopez's user avatar
0 votes
1 answer
284 views

Can't access startfile http://localhost/

Having created a docker container as: docker run -d --name=jetty jetty How do I now get a hello world page as? Looking up localhost:8080 Making HTTP connection to localhost:8080 Alert!: Unable to ...
Nicholas Saunders's user avatar
0 votes
1 answer
17 views

Service for hosting native JavaScript ES modules

We will be serving static javascript ES modules and looking for an all-in-one hosting platform that is easy to use. It must provide CORS headers (ES modules enable CORS by default) HTTP/2 support is ...
mikabytes's user avatar
  • 161
1 vote
3 answers
560 views

How to make an AWS S3 bucket accessible over HTTP?

Does AWS S3 provide a way to make bucket's files available over HTTP preferably protected with BASIC_AUTH? I mean listing the files (index) and make it possible to download them over HTTP.
W.M.'s user avatar
  • 187
0 votes
3 answers
83 views

Auto-scaling, how to securely get code from private repo

I want to setup an auto-scaling configuration but cannot think how I can securely get code from a private repo when I spin up new instances. I obviously don't want to put passwords in startup scripts,...
Adam Copley's user avatar
1 vote
1 answer
1k views

Jmeter simulating traffic and avoiding 429

I am using Jmeter to investigate the performance and capacity needs of a few web services. Jmeter sends traffic to the web-facing url (served by Nginx), with a rising rate, to see where the service ...
Bruce Becker's user avatar
  • 3,653
2 votes
2 answers
282 views

Nginx /foo and /foo/ redirects

I want both http://domain/foo and http://domain/foo/ requests to serve a given resource. Here's the relevant part: location / { rewrite /(.*) /ipns/QmdpoFuwY/$1 break; proxy_pass http:/...
fbielejec's user avatar
  • 183
15 votes
2 answers
1k views

To design a blue green deploy how to publish websocket traffic from live to hot swap server

A blue green deploy involves pumping live prod data flows (blue) into a hot swap non prod environment (green) in preparation to deploy to live the green environment, such that the green has full data ...
Scott Stensland's user avatar