Questions tagged [web]

"The web," or "world-wide web" is a term for the system of hypertext linked documents accessed over the internet, with a web browser. The "www" that comes before most webpages is a reference to the "world-wide web."

"The web," or "world-wide web" is a term for the system of hypertext linked documents accessed over the internet, with a web browser. The www that comes before most webpages is a reference to the "world-wide web."

In 1989, a British engineer, computer scientist and CERN employee (Tim Berners-Lee) wrote a proposal for what would become the web, publicly introducing the project in 1990 with Belgian computer scientist Robert Cailliau. The introduction of Mosaic (a graphical web browser) in 1993 by the National Center for Supercomputing Applications at the University of Illinois at Urbana-Champaign is widely regarded as the turning point for the web, which is now the most popular portion of the internet.

While the terms "web" and "internet" are often used interchangeably in colloquial language, they are not the same. The web is simply one of many services available on the inter-connected networks that make up the internet.

A more thorough run-down of the web is available at Wikipedia.

542 questions
3
votes
2 answers

Configuring reverse proxy with mod_proxy rules using only .htaccess file

I am trying to connect website (which is share hosted) to a remote server, so that when I access http://example.com/test/ it will display the results from http://remote-example.com/ (which is a web app server) The web hosting provider only allows me…
crbon
  • 41
  • 1
  • 6
3
votes
1 answer

What will happen if a CPU burst up to 100% utilization in an SMP infrastructure?

I have a web server that has 4 CPUs, It has somehow encountered packet loss intermittently. Finally we moved allthe application and data to another system that has 8 CPUs. We did this because we found nothing was wrong except one phenomenon that the…
Jepsenwan
  • 170
  • 3
  • 12
3
votes
1 answer

Correct Permissions for WWW Data

I keep coming back to perfect web-based permissions, I've done it a few ways. This post isn't as complex as it is a little long, I wanted to provide some samples. I've searched far and wide but I am wondering if there is a de-facto standard. Thank…
JREAM
  • 163
  • 1
  • 1
  • 9
3
votes
3 answers

Nginx uWSGI responses truncated

I tried to write a web service as a joke today at http://dont-tread-on-memes.controversial.io. It's a flask app that serves fairly large images. The Flask app works well on its own, as does an independent uWSGI server, but when I try to plug uWSGI…
Luke Taylor
  • 151
  • 7
3
votes
1 answer

Modifying ASA HTTP authentication page

The Cisco ASA has a feature where a blocked HTTP request can be redirected to a web page hosted on the ASA itself in order to allow the web user to authenticate himself to the ASA and unblock the request. This is configured with the aaa…
wfaulk
  • 6,878
  • 7
  • 46
  • 75
3
votes
1 answer

what is the maximum http response latency?

I'm trying to figure out where to place servers that use HTTP calls to another server for retrieving results. I cannot seem to locate any definition of HTTP that defines the maximum response time although I have a vague recollection of 1800ms. Does…
Jim B
  • 24,081
  • 4
  • 36
  • 60
3
votes
1 answer

Strange scans from robots

I'm noticing scans in /var/log/apache of search engine bots GETing specific filenames from my server. Most of them are for cracks. I'm not hosting those files, and I don't see them anywhere on my disks. Any idea what would cause this?
Aaron
  • 33
  • 2
3
votes
1 answer

Protect Nginx directory recursively

How can I protect all files and other directorys in a specific directory (-> recursively) in Nginx so they can't be accessed from the web?
3
votes
1 answer

enterprise alternatives to WPAD proxy configuration?

We have 40+ sites in 20+ countries. We use egress filtering and force most users through proxy servers via WPAD. WPAD is great and works 99.9% for us. However, we have had a few cases where WPAD support issues has caused browsers (only MSIE - on…
jhaar
  • 181
  • 1
  • 1
  • 5
3
votes
1 answer

Google Analytics real-time data into a 'top' like CLI

Does anyone know of a project or set of scripts that attempts to bring Google Analytics data to the command line? What I dream about is a "top" like application that lets me monitor Google Analytics real-time data without a web browser. Thanks!
3
votes
2 answers

Getting Fatal Errors in Nginx to Be Shown in the Browser

While developing I'm getting blank pages in my browser whenever I create a fatal error in PHP with a typo or just my bad programming ;). It's super annoying for me to have to view the raw nginx error log file to see the fatal errors and find the…
Kirk Ouimet
  • 559
  • 3
  • 11
  • 27
3
votes
7 answers

Any tools for saving web pages and related links to view offline?

I am going on a vacation and will be bringing my laptop. I am trying to read during wait time (at the air port) and flight There are tons of articles to catch up. What would be a good way to save web pages so that they can be viewed later on? Should…
dance2die
  • 2,011
  • 7
  • 32
  • 41
3
votes
3 answers

What is meant by root in regards to website hosting?

I have been asked to make some simple modification to a web page for a client. They already have a website from a previous web designer and want to give the website to me as he has quit. The old web designer asked me for my 'root.' What does he…
Yahya Uddin
  • 303
  • 1
  • 2
  • 9
3
votes
1 answer

Why does curl give a different response for $_SERVER['REQUESTI_URI'] than browsers?

I have a simple test PHP page: '; echo $_SERVER['REQUEST_URI']; ?> When I access this page with a browser (I've tested chrome, and links) it gives me the output I'm expecting: 10.1.25.222 /test.php But…
grimetime
  • 143
  • 6
3
votes
3 answers

Filesystem access through web interface

I have an SSH+Samba server so people can access its files from anywhere on the network. I thought it would be also interesting to provide access through a web interface, so they can access the files even when they don't have access to the VPN or a…