Questions tagged [configuration]

Configuration is a general term that can refer to the arrangement of functional units according to their nature and characteristics. Also, it can refer to software configuration which more suitable for server-related topics.

Configuration is a general term that can refer to the arrangement of functional units according to their nature and characteristics. Also, it can refer to software configuration which more suitable for server-related topics.

A configuration file is usually a text file associated with a specific software which describes the initial settings of the software. Some applications provide tools to generate configuration files.

Some computer programs only read their configuration files at startup. Others periodically check the configuration files for changes. Users can instruct some programs to re-read the configuration files and apply the changes to the current process, or indeed to read arbitrary files as a configuration file. There are no definitive standards or strong conventions.

2704 questions
9
votes
1 answer

adding a global URI prefix for Tomcat web apps

I am setting up a reverse proxy configuration where all requests whose path starts with '/apps/' should be proxied by Apache to Tomcat. This IMO has 2 benefits: it makes it possible to reserve proxying to only the '/apps/' part of the URI space, and…
rvdb
  • 319
  • 1
  • 5
  • 14
9
votes
4 answers

How many domains on a single Apache server?

I'm hosting about 300 domains for my clients on a single Apache server. They all don't have much traffic, so the server load is not a problem. Theoretically there should be no limit how many of such low traffic domains I can have on the server, but…
Gene Vincent
  • 385
  • 1
  • 6
  • 16
9
votes
2 answers

IIS 7.5 (Express) applicationhost.config: Can a virtualDirectory's physicalPath be a relative path?

I'm configuring a site in applicationhost.config for IIS 7.5 Express:
stakx
  • 195
  • 1
  • 7
9
votes
2 answers

Php.ini disable "Scan this dir for additional .ini files"?

I want to lock my php configuration and disable loading other php configurations rather than the default (which in my case is located at /usr/local/php/lib/php.ini) I want to disable the "Scan this dir for aditional.ini" or if there's a way to set…
tftd
  • 1,498
  • 7
  • 25
  • 40
8
votes
1 answer

How do I get an aggregate of all the stats from all uWSGI vassals using uwsgitop?

TL;DR Can anyone tell me how I may get uwsgitop to monitor all of my vassals in my emperor-vassal setup in one shot? I have an emperor-vassal setup for my uWSGI server, and I need to monitor all my vassals. I could always check my application logs…
8
votes
2 answers

Where are zfs settings written?

On FreeBSD 10.0, when one creates zfs partitions and configures where they are mounted (permissions, etc.), where is this information stored? /etc/fstab is largely empty. i.e.: $ zfs mount zpool0/ROOT/default / zpool0/home …
ericx
  • 416
  • 1
  • 4
  • 10
8
votes
1 answer

proxy pass based on query parameters in nginx

Is there a way to proxy pass based on query parameters? I need to proxy pass root url request to server A. But, if root url has certain query parameters i need to proxy pass to server B. How can i achieve this? Below is my current configuration: …
abc
  • 83
  • 1
  • 3
8
votes
2 answers

nginx serving alternate location on 404

I'm trying to set up an nginx config as follows: When receiving a request like /tile/SteveCountryVic/1/2/3.png: Attempt to pass it through to http://localhost:5005/1/2/3.png If that 404s, pass it to another server as…
Steve Bennett
  • 5,750
  • 12
  • 47
  • 59
8
votes
2 answers

debian, diff, config default

I want to know if is posible to get the diff on the original versus the current config files of installed debian packages. If found an answers which shows up the modified config files, but I find no way to generate the diff. The command…
Neoecos
  • 183
  • 4
8
votes
5 answers

Methods for analyzing Red Hat sosreport output?

For some time (since EL 4.6), Red Hat has embedded a system report and troubleshooting tool into the operating system. The tool, sosreport, collects system information and settings and bundles it into a tar.bz archive for easy distribution.…
ewwhite
  • 197,159
  • 92
  • 443
  • 809
8
votes
3 answers

IIS 7.5 Unable to write configuration file

I have a fault regarding IIS 7.5 on Win Server 2008 R2, whenever I try to change any site bindings or start an application pool I get the error below: Filename: \\?\C:\Windows\system32\inetsrv\config\applicationHost.config Error: Cannot write…
flumeware
  • 81
  • 1
  • 1
  • 4
8
votes
4 answers

How to set up Cobbler with Puppet or Cfengine?

I've heard a lot about using Cobbler together with Puppet/Cfengine for rapid deployment & configuration. Can you point me to some tutorials or share you experience of how you do it? Would also love to hear about any other systems you use for rapid…
Continuation
  • 3,080
  • 5
  • 30
  • 38
8
votes
2 answers

How to block Nginx access log statements from specific user agents

I am looking to turn off logging in the Nginx access log file from specific requests from http user agents. Basically from the Amazon ELB Health Check and our external (Pingdom) monitoring. Since these come every few seconds, makes testing hard to…
briannyc
  • 83
  • 1
  • 4
8
votes
2 answers

apache2: why parameter results “deny not allowed here” error in virtualhost tag?

I have asked the same question to stackoverflow but then I thought it might be more related to here. in apache's httpd.conf between VirtualHost tags I put expression like follows: ServerName geopreprod.xxx.com.tr …
destan
  • 179
  • 1
  • 1
  • 8
8
votes
1 answer

Is there a way to increase the maximum allow url length for incoming requests on Apache HTTPd?

I'm running a web services site on Apache HTTPd and every once in while I get an error indicating the incoming URL is too long (HTTPError: HTTP Error 414: Request-URI Too Large). My site is servicing programs rather than browser so I'm not worried…
Boaz
  • 2,229
  • 5
  • 20
  • 15