Tagged Questions
-3
votes
2answers
48 views
Alternatives to wireshark? [closed]
What would be a good option to troubleshoot an interaction of browser with a server besides wireshark?
I mean being able to see what the browser sends and receives.
Is firebug a good alternative or is ...
0
votes
0answers
13 views
HTTP Communications- Browser not receiving all data [migrated]
I have set up a server with my homemade http code on it. My code binds to a port(80) and then listens for requests on that port. My response is sent in pieces using multiple send() calls. If I access ...
0
votes
1answer
40 views
Sophos access a webserver from the web
I have an web server(IIS) behind an SOPHOS UTM 9
I have setup the Web Application Firewall feature
It is a completely fresh install. No other settings have been eddied.
When I Try to access the ...
1
vote
1answer
56 views
Issue setting environment variable in apache httpd.conf
I'm trying to figure out why I can set a string literal in httpd.conf using SetEnv:
SetEnvIf anothertest ^$ something=sometext
But I can't assign the contents of another variable:
SetEnvIf ...
0
votes
0answers
39 views
FCGI or HTTP for serving web apps behind reverse proxy?
Which protocol (HTTP or FCGI) is better and more efficient for serving web apps behind reverse proxy?
Precisely I have following:
internet ------- Nginx ------ web app in Go lang
HTTPS ...
0
votes
1answer
49 views
Redirect HTTP to HTTPS without a web server
I'm running an OpenVPN AS server on a VPS and the server itself has a web interface accessible through HTTPS. I'd like to redirect all HTTP traffic to HTTPS without having to install a web server for ...
1
vote
1answer
66 views
Forcing a specific HTTP URL request through web proxy
I need to force one specific HTTP request through a web proxy whereas the rest of the HTTP requests should directly go to the web server.
I can use error code 305 Use Proxy response to redirect my ...
0
votes
1answer
58 views
How to allow clients from virtual network connect to ubuntu web-server hosted on VirtualBox?
I have a web-app running on VirtualBox Ubuntu VM. And also I have a virtual network with users which I want to let use this web-app.
Software for virtual network called 'Remobo'. In VM network ...
0
votes
1answer
158 views
I can't connect to my WAMP server from a client on the same network
Usually I would manually set up Apache and PHP but this time I thought I would go for the WAMP alternative.
I've set up WAMP and it's working perfectly fine on the host machine.
If I try and access ...
0
votes
0answers
38 views
securing server to server http post [closed]
In my website, I accept data submission from few restricted websites using HTTP POST method. We exchange some secure key to ensure that correct source is sending data.
But is there any way to ensure ...
3
votes
3answers
2k views
How to redirect from HTTPS to HTTP before server error?
I used to operate a website with an SSL certificate, but have stopped using the SSL certificate. The problem is that most of the external links to the website use the https:// prefix.
I have tried ...
0
votes
2answers
125 views
How does a webserver handle a connection lost?
How does a web server handle a lost connection, for example the client sends a request and due to some problem got disconnected from the server before the latter could reply with a response, what does ...
1
vote
0answers
168 views
Varnish. Wrong outgoing IP?
I have the following:
backend default {
.host = "127.0.0.1";
.port = "8080";
}
acl purge {
"127.0.0.1";
}
sub vcl_recv {
#cloudflare
remove req.http.X-Forwarded-For;
if ...
1
vote
2answers
351 views
Lots of 408 Request Timed Out from same IPs
Web server: Nginx.
Checking our log files, there are many log entries of connections that:
take 59-61 seconds
send an empty request (or at least none is logged)
result in a 408 response (request ...
-1
votes
4answers
176 views
How can a web server installed on the same host as the FTP server?
I have a situation here where I have to make ftp to be available like http://ftp.example.com instead of ftp.example.com. Somebody advised me to install a web server on the same host as FTP server. ...
1
vote
2answers
186 views
Meaning of message in access log file
I am seeing the issue in one of my web server access logs which is proxying to weblogic
...-0400] "GET /" 500 32
Can you suggest what this might mean. It is a sunone web server
-2
votes
1answer
34 views
How to receive web page faster with resouce caching [closed]
When sending request on HTTP server which is flooded by other requests my request will
be in the queue and after some time server will send response. Now my question comes :
Would it help to make ...
4
votes
1answer
426 views
How to make Apache return a custom page on a 400 error with malformed host headers?
I think what I was asking for was a bit hard to understand, so, I am trying to make it simpler...
I need my server to have a custom 400 error page when it receives a request with a malformed host ...
0
votes
1answer
150 views
configuring varnish, and document root directory of varnish
due to heavy load and disk issue we are going to use varnish webserver
we have worked on nginx and apache webserver
we heard that varnish is little more fast because it store web pages in memory ...
1
vote
1answer
105 views
Can one rely on Apache sanitizing URLs?
I set up Apache with mod_wsgi in a default installation, with a very simple test application test.wsgi that goes like this:
def application(environ, start_response):
status = '200 OK'
output ...
0
votes
4answers
255 views
HTTP resource caching / fetching
I'm trying to optimise a page, and I'm seeing some strange behaviour. Each time I click on a link to the page, all resources are fetched from the server, responding with 200s. However, when I refresh ...
0
votes
1answer
355 views
What is responsible for Connect/Send/Wait in a HTTP request?
Services like pingdom and Google speed analyze the time consumed for reading a HTTP file. This includes
DNS: Obviously, DNS management to interpret the namespaces is responsible.
Connect: ???
Send: ...
0
votes
3answers
94 views
How to log latency from remote sites to web server?
I have a web server that works great for North American users, but users from Asia will have problems every once in a while. I need to collect some data and the first set is to get some trending for ...
1
vote
2answers
168 views
serving logs via HTTP
Here is what i am trying to achieve: I have a few Linux servers that have my web App deployed on. Currently my development team access the web app, run their test cases and then SSH into my Linux ...
1
vote
1answer
458 views
Lighttpd: Redirect specific location and sub-locations from HTTP to HTTPS (without using domain name)
I would like to redirect a specific section of a website from HTTP:// to HTTPS:// using Lighttpd.
I've been looking at this
Lighttpd wiki entry, but the examples don't work the way I want.
I have ...
2
votes
2answers
48 views
Web server response degrades even though it doesn't seem busy
I'm running Apache on a dedicated Windows 2008 server with a back-end process connected to Apache via FASTCGI. The back-end process is actually a game engine. Everything is working fine but I've ...
2
votes
1answer
106 views
Basic understanding about load balancer
I am running a http webserver that is connected to a backend database. Now if a client generates 100 threads and tries to contact that webserver through a loadbalancer, I get around 32ms delay. But ...
0
votes
1answer
517 views
Good resources for understanding HTTP, Browsing, caching, web server security etc? [closed]
When I ask questions, many of the times, people leave answers like "first learn about this (or that)." The problem is, I don't know if I can find books specifically written on those subjects.
Here ...
1
vote
1answer
181 views
3
votes
3answers
268 views
What is the benefit to having a network's HTTP traffic sent out on a different IP than HTTPS?
I've noticed that some traffic coming to my web sites reports a different source IP depending on whether or not the connection is secure. I have two different hostnames, one of which is HTTP, the ...
1
vote
0answers
192 views
IIS: removing the Server HTTP header without URLScan
(Windows 2003 R2, IIS 6)
Is there anyway to disable the "Server: Microsoft-IIS/6.0" HTTP header that doesn't involve installation or URLScan? Our initial testing showed some problems with URLScan ...
2
votes
1answer
153 views
Proxy HTTP requests to servers on different ports, using subdomain
Say I have a minimalist Python web server running with several instances, each with different ports specified as command line arguments.
I'd like requests to my server to be redirected like this, ...
7
votes
3answers
296 views
Should a web server care about IPv6 compatibility?
Are there any IPv6 clients in the real world? If not, is there any other reason to support IPv6?
(My understanding is that with the advent of WANs and such IPv6 is not necessary, hence extremely low ...
0
votes
2answers
312 views
slow http connection in LAN
I have a weird problem I'm trying to solve, but can't find out how. I found that problem when trying to access a php page and only the basic html and css were loaded but the flash didn't. when I tried ...
1
vote
3answers
505 views
How Can I Log Outbound HTTP Requests From My Web Applications?
One of our apps is calling a third-party webservice which has recently been switched to a different URI. We need to investigate this to try and see where the old address is being used (the code/config ...
1
vote
1answer
48 views
HTTP 404 Checking Service
I'm looking for an online service that crawls your site reliably and reports back on HTTP 404s, Page not Found errors. I don't want to install any software but just get an e-mail when a 404 is present ...
0
votes
3answers
458 views
gzip compression good or bad?
I have a server that currently does a lot of processing in my application and the target users are those who have a very good internet connection.
The output that is sent from the server is always ...
1
vote
2answers
177 views
HTTP Hostname to IP Address Routing
I currently have the following network setup:
Router/Firewall > IIS Web Server
When a HTTP request comes through, IIS will look at the host header and decided which website to return.
My problem ...
1
vote
2answers
47 views
Processing files from a Content Distribution Network problem
From what I understand that CDNs are meant to physically cache your static files in multiple regions closer to your users. However, I've noticed a few websites that when a page is requested from their ...
0
votes
1answer
49 views
partial responses from remote server
I'm posting this question here, but I'm not 100% sure where the problem lies. I have a site hosted through Media Temple that I'm developing. It's started to continually give me http 206 responses ...
2
votes
3answers
241 views
Is reading the HTTP GET response enough to know if the server is up?
I want to make sure the site is UP and running. Is reading the HTTP GET Response enough?
What does services like PingDom test?
1
vote
2answers
144 views
Serving static web files off a non-standard port
I'm close to deploying a Django project to production. I'm looking over some infrastructure decisions. Something that came up was serving static files with a different server such as lighttpd.
...
1
vote
3answers
248 views
Web Server (Intranet) Availability Test Script/Program
After rebooting a number of web servers (around 40), I would like to be able to quickly test each one to ensure that they are all up, running and will return an HTTP 200 code when called.
Please can ...
1
vote
2answers
322 views
Use a reverse proxy do record all incoming HTTP request, then execute it in a clone server for performance testing
A few weeks ago I went to a presentation where a guy said that in his company he used a reverse proxy that records all incoming http requests to the production server. Then he can execute them on ...
0
votes
1answer
1k views
Kerberos Authentication for Webservers
Before I blindly jump on "trial an error" tests, I'd like to ask some general questions on Kerberos Authentication for Webservers. I want to evaluate what's possible with Kerberos. The main benefit ...
2
votes
1answer
541 views
Pros and Cons of Keep-Alive from Web Server Side
Keep-Alive connection feature in HTTP protocol is meant to reduce TCP connection hits to web server. It should be able to improve web server performance. However, I found that some web servers ...
0
votes
1answer
201 views
Getting apache to respond to http broadcasts
I was wondering if there is a way to configure Apache to respond to http requests sent to the broadcast address (ie. 192.168.1.255). Thanks
2
votes
2answers
2k views
How to make HTTP Cache Headers Work
Can someone please help me with a HTTP caching question?
I thought that if I set the "Expires" and "Cache-Control:max-age" request headers, then a browser wouldn't make a GET request until after the ...
1
vote
2answers
474 views
How do I capture and playback http web requests against multiple web servers?
My overall goal is to not interrupt a production system while capturing HTTP Posts to a web application so that I can reverse engineer the telemetry coming from a closed application. I have control ...
1
vote
1answer
256 views
How to serve HTTP filenames with special characters?
Take the following blog page as a case:
http://www.roney.com.br/2010/06/20/estados-do-brasil-um-pais-que-precisa-se-unir/
!Careful, it has tons of youtubes embedded, so is a slow load! It is a ...

