How can I create a Webmin user who can only configure one Apache virtual server or DNS domain?
WebminIn the Webmin Servers module, create a new user and give him access to only the Apache Webserver module. After saving, click on Apache Webserver next to the user's name in the list of Webmin users and use the form that appears to deny him access to everything except one selected virtual server. Many other modules can also be configured in a similar way to restrict the access of a user to only certain DNS domains, Unix users or mail aliases.
Related QuestionsHow do I configure an Apache server?
The GPM installation FAQThe configuration of the Apache server is controlled by a text file called httpd.conf. On a Linux machine this is most likely found at /etc/httpd/conf/. On a Windows machine it is most likely found at C:/Program Files/Apache Group/Apache(2)/conf/. This file can be editted in any text editor. The easiest way to configure the Apache server to run GPM, is to change Apache's DocumentRoot directive to "C:/Program Files/Apache Group/Apache2/htdocs/thegpm" on Windows or "/var/www/thegpm/" on Linux.
Related QuestionsDoes or will Apache act as a Proxy server?
Apache Server Frequently Asked QuestionsApache version 1.1 and above comes with a proxy module. If compiled in, this will make Apache act as a caching-proxy server.
Related QuestionsCan I use Active Server Pages (ASP) with Apache?
Apache Server Frequently Asked QuestionsThe base Apache Web Server package does not include ASP support. However, a number of projects provide ASP or ASP-like functionality for Apache. Some of these are:
Related QuestionsHow do I configure a server as a Global Catalog?
Environment settings set by a batch file are not working.Start the Active Directory Sites and Services Manager (Start - Programs - Administrative Tools - Active Directory Sites and Services Manager)
Related QuestionsHow do I configure DHCP Server Service?
Environment settings set by a batch file are not working.The DHCP Server Service is configured using "DHCP Manager" that is installed after the installation of the DHCP Server Service. Exclusion - start and end, e.g. 200.200.200.20 and 200.200.200.30, would mean available addresses would 200.200.200.10-200.200.200.20 and 200.200.200.30-200.200.200.100 A message that the Scope has been added, but is not active, would you like it to be active, click Yes.
Related QuestionsHow do I configure Oracle HTTP Server (Apache) for PHP? Example?
FAQTs - Knowledge Base - faqts : Computers : Programming : L...How do you go about setting univeral variables? Example: != "(U*)" where * could be anything.
Related QuestionsHow do I configure Apache log files ?
esoftys - eWebLog Analyzer FAQWe recommend you to use the Combined log format because the Common log format doesn't contain information about referrers and user agents (OS, browsers, spiders). By default Apache uses the Common log format but the majority of hosting providers set the Combined log format for Apache on their servers.
Related QuestionsHow can I get my script's output without Apache buffering it? Why doesn't my server push work?
Apache Server Frequently Asked Questionsof Apache 1.3, CGI scripts are essentially not buffered. Every time your script does a "flush" to output data, that data gets relayed on to the client. Some scripting languages, for example Perl, have their own buffering for output - this can be disabled by setting the $| special variable to 1. Of course this does increase the overall number of packets being transmitted, which can result in a sense of slowness for the end user. Prior to 1.
Related QuestionsWhy can't I publish to my Apache server using PUT on Netscape Gold and other programs?
Apache Server Frequently Asked QuestionsBecause you need to install and configure a script to handle the uploaded files. This script is often called a "PUT" handler. There are several available, but they may have security problems. Using FTP uploads may be easier and more secure, at least for now. For more information, see the Apache Week article Publishing Pages with PUT.
Related QuestionsWhat is Apache?
Apache Server Frequently Asked Questionsruns on Windows NT/9x, Netware 5.x and above, OS/2, and most versions of Unix, as well as several other operating systems DBM databases for authentication allows you to easily set up password-protected pages with enormous numbers of authorized users, without bogging down the server. Customized responses to errors and problems Allows you to set up files, or even CGI scripts, which are returned by the server in response to errors and problems, e.g.
Related QuestionsQ.B3- How do I configure the server?
Answers to Frequently Asked Questions about XFree86All of the configuration information we have, is included with the release. You should use one of the included configuration programs, XF86Setup or xf86config. This is explained in the QuickStart Guide. For further information, you could also read the XFree86 configuration guide (available from http://www.XFree86.org/3.3.5/Config.html), and the manual pages XF86Config(4/5) and xvidtune(1).
Related QuestionsHow do I configure my X server to do global gamma correction?
GIMP - DocumentationSome servers have no facility for this; you may be able to adjust your monitor to correct somewhat. Later versions of XFree86 allow these server options: gamma f set gamma value (0.1 < f < 10.0) Default: 1.0 -rgamma f set gamma value for red phase -ggamma f set gamma value for green phase -bgamma f set gamma value for blue phase
Related QuestionsHow do I configure the http server to work behind a router?
Willing Webcam FAQ - Frequently Asked QuestionsConnect to the router through web browser. Set the broadcasting IP address and Port, select TCP-IP protocol. How to ... If you hear nothing from your broadcasting page, check the 'Tools > Internet Options > Advanced > Java (Sun) > Use JRE v1.x.x_xx for <applet>' option in MS Explorer. If there is no such option or if the JRE version is lower than 1.
Related QuestionsWhy do my Java app[let]s give me plain text when I request an URL from an Apache server?
Apache Server Frequently Asked Questionsof version 1.2, Apache is an HTTP/1.1 (HyperText Transfer Protocol version 1.1) server. This fact is reflected in the protocol version that's included in the response headers sent to a client when processing a request. Unfortunately, low-level Web access classes included in the Java Development Kit (JDK) version 1.0.2 expect to see the version string "HTTP/1.0" and do not correctly interpret the "HTTP/1.
Related QuestionsWhat is the relationship of the Apache Tomcat open-source application server to the J2EE SDK?
Java 2 Platform, Enterprise Edition (J2EE) FAQTomcat is based on the original implementation of the JavaServer Pages (JSP) and Java Servlet specifications, which was donated by Sun to the Apache Software Foundation in 1999. Sun continues to participate in development of Tomcat at Apache, focusing on keeping Tomcat current with new versions of the specifications coming out of the Java Community Source Process. Sun adapts and integrates the then-current Tomcat source code into new releases of the J2EE SDK.
Related QuestionsHow do I make Apache a proxy server?
hp-ux web server suite faqsAdd the following to httpd.conf: <IfModule mod_proxy.c> ProxyRequests On < Proxy *> Order deny,allow Allow from all </Proxy> </IfModule> Assuming you are running Apache on yourserver.com, in your browser set your proxy to yourserver.com. For MS Internet Explorer do the following menu picks: Proxies can be used in many different ways, for instance load balancing. They can be inside or outside the firewall. They can act as a firewall.
Related Questionshp apache-based web server faqslt;IfModule mod_proxy.c> ProxyRequests On <Directory proxy:*> Order deny,allow Allow from all </Directory> </IfModule> Assuming you are running Apache on yourserver.com, in your browser set your proxy to yourserver.com. For MS Internet Explorer do the following menu picks: Proxies can be used in many different ways. They can be used to cache web content or for load balancing. They can be inside or outside the firewall. They can act as a firewall.Related Questions
How do I configure Apache 2 for SSL?
SDB: Apache 2 FAQ (Frequently Asked Questions)apache2 just shows the default apache start page rather than the SuSEhelp (or system status information) screen, which apache1 on 8.0 did. Apache/1.3.27 (Linux/SuSE 8.2) fails to start while the system boots for some reason , i am starting SuSE in init 3 mode . Please help , thank you. I've installed the rpms, Apache and mod_perl, mod_python and mod_php4. However, they don't seem to be taking effect. I've added : LoadModule php4_module /usr/lib/apache2-worker/libphp4.so to suse_loadmodule.
Related QuestionsWhat is the difference between Apache and HP Apache-based Web Server?
hp apache-based web server faqsApache is an open source web server that is available in source code and compiled binaries for various operating systems including older versions of HP-UX. It has a reference implementation of RSA cryptographic libraries. The HP Apache-based Web Server is engineered through state-of-the art processes for the highest quality and is tailored to run smoothly on the HP-UX. The HP Apache-based Web Server is a total solution for web server deployment for the enterprise.
Related QuestionsCan jOAI be configured to run through an Apache web server (httpd)?
Frequently Asked Questions (FAQ)Yes. Running jOAI through an Apache web server provides additional functionality that is not available through Tomcat alone. For example, Apache provides robust support for SSL, user authorization and authentication, access control by IP address, virtual host support, web logging, URL redirection, and other functionality. By configuring Tomcat to run through Apache, all of Apache's functionality becomes available.
Related QuestionsWhat is the difference between apache webserver, java webserver and tomcat server?
www.adobians.comTomcat is an open-source HTTP server from the Apache Foundation, written in Java, that supports Servlets and JSP. It can also be used as a "plug-in" to native-code HTTP servers, such as Apache Web Server and IIS, to provide support for Servlets (while still serving normal HTTP requests from the primary, native-code web server).
Related QuestionsCan I run more as one site with one Apache Server?
Apache::PageKit::FAQ -- The Frequently Asked Questions for A...Sure, as long as the Perl Classes don't conflict. (You can't run both production and development PageKits on the same server, unless you make sure that the Classes have different names.) You will also have to make sure that the PKIT_ROOT and cache_dir configuration option are distinct for each server. If cache_dir is not set for either of them, that should be fine, since it defaults to PKIT_ROOT/View/pkit_cache.
Related QuestionsHow do I find out the version of Apache Server running on my i5/OS?
IBM System i - HTTP Server for i5/OS: Frequently asked quest...You can display the version using the -V option of the STRTCPSVR command. For example: STRTCPSVR SERVER(*HTTP) HTTPSVR(APACHEDFT '-V')
Related Questions