Questions tagged [http]

HTTP stands for Hyper Text Transfer Protocol and is the protocol used to transfer information around the World Wide Web.

HTTP is just one communications protocol on the web. Others include:

  • Transmission Control Protocol (TCP)
  • User Datagram Protocol (UDP)
  • Internet Control Message Protocol (ICMP)
  • Post Office Protocol (POP3)
  • File Transfer Protocol (FTP)
  • Internet Message Access Protocol (IMAP)

HTTP on Wikipedia

2230 questions
0
votes
4 answers

Tips on technology for one program, many concurrent http clients on small host?

What technology could be used for one application to serve many simultaneous users on a small resource-constrained host (eg: Rasbperry Pi or similar)? That is, it doesn't need a general purpose web server like Apache, as it would only need to…
Zeph
  • 109
  • 2
0
votes
1 answer

HTTP request via proxy on AWS server fails with 407

I'm trying to send an http request using the requests library through a proxy from a new aws server. I've allowed all traffic inbound/outbound in the security settings. urllib3.exceptions.ProxyError: ('Cannot connect to proxy.', error('Tunnel…
aJetHorn
  • 1
  • 4
0
votes
2 answers

A particular sub-domain in a virtual host is not redirecting, but others succed

I like my website to be accessible by example.org or https://example.org not www.example.org. So I want http://www.example.org to redirect to http://example.org and http://www.example.org to https://example.org. But an interesting thing…
Finch
  • 125
  • 7
0
votes
1 answer

Can Apache be configured to require authentication based on the query string?

I've configured basic Apache authentication for certain areas of a website that only administrators should have access to. Most web applications make this convenient by putting their admin pages in a subdirectory, so I configure authentication for…
EMP
  • 5,172
  • 10
  • 37
  • 33
0
votes
1 answer

Warm the cache but don’t raise too many DNS requests

I have a website with over a million pages served from a varnish cache that sits behind nginx and every day I run a cron to invalidate all the pages (Don’t ask me why, it's complicated…). The website is behind Cloudflare and I am charged per DNS…
Quintin Par
  • 4,373
  • 11
  • 49
  • 72
0
votes
0 answers

Can't redirect http:// to https:// via nginx

Good day everybody, I have set up an Nginx Webserver on an Ubuntu instance. I have configured the /etc/nginx/sites-enabled/default file like this: server { listen 80; #listen IPv4 listen…
0
votes
2 answers

Redirect http to https but exclude some

I'm using nginx and I want to know if it's possible to do this. Now to manage my vhost, I create them separately in /etc/nginx/sites-available (activate them after) mydomain.com subdomain.mydomain.com subdomain1.mydomain.com anotherdomain.com So to…
Dlazzy
  • 33
  • 5
0
votes
1 answer

Having trouble on IIS When Downloading Files from Mobile

I have an iOS App that downloads files from my server. Recently I upgraded my server from Windows Server 2012 to Windows Server 2016. After upgrading suddenly my iOS App started to have trouble downloading files from the new server. While upgrading…
Pablo S.
  • 1
  • 2
0
votes
1 answer

Accessing an internal page from an internal system using the external network?

I am kinda new to this. I am setting up a Zabbix web-check for an internal service. But the URL needs to be hit from outside the internal network to get the right output. I do not want to have to set up VPN stuff, ideally. What are my options in…
DDauS
  • 1
0
votes
1 answer

HTTP Error -5 occured when trying to download Views (WAMP)

Can anyone explain to me what HTTP error -5 is? I get this error message every time I try to update or download a module in my Drupal 7 site locally. For example: HTTP error -5 occurred when trying to fetch…
TBJ
  • 171
  • 1
  • 8
0
votes
1 answer

Relay HTTP requests to multiple web server

We have our web server cluster in the AWS's US-WEST-2 region reading/writing to Postgres RDS in the same region. As per AWS's SLA a region can be down for 22 mins in a month. To mitigate this downtime of 22 min when ever it happens. I am setting up…
KunalC
  • 101
0
votes
0 answers

Which worth it to use first? Load balance or HTTP cache server?

We have a web application that we are about to take live. But I have a fear that the server won't be able to handle all the requests and it won't be as comfortable to the users as a website should be. Currently I'm thinking about using 2 things. One…
Bert
  • 1,028
  • 1
  • 16
  • 33
0
votes
1 answer

Nginx "Address already in use" if backlog is specified

I am running nginx version: nginx/1.10.2 I want to tune up my default configuration. According to https://www.nginx.com/blog/tuning-nginx/ I changed the somaxconn parameter in the OS and specified the same in nginx.conf So my nginx.conf reads like…
Ram
  • 227
  • 1
  • 3
  • 5
0
votes
1 answer

Nginx front apache then

I had only owncloud running (http and https with apache2) in my network, but now I want host another website. https was working without warning "Your connection is not secure" So for this I have installed another server with nginx on which I want to…
0
votes
1 answer

Disable Range header on Google Cloud Bucket

I am serving what is essentially gifv files. I've noticed is doing multiple requests to retrieve video in chunks. I have hunch that it would be better performance for users if video's were served at once, rather than doing multiple requests. I…
Dzh
  • 205
  • 2
  • 7