Mini Servers: Apache 2.2.9 Service: Difference between revisions

From The Uniform Server Wiki
Jump to navigation Jump to search
mNo edit summary
m (Text replace - "sourceforge.net/projects/miniserver" to "sourceforge.net/projects/uniformserver")
 
(3 intermediate revisions by one other user not shown)
Line 197: Line 197:


=== Download ===
=== Download ===
Download this server from SourceForge [http://sourceforge.net/projects/miniserver Project Page] save the file '''mini_server_2.exe''' to drive '''C'''.
Download this server from SourceForge [http://sourceforge.net/projects/uniformserver/files/MiniServer/MiniServer_%20Apache%202.2.9%20Service/ Project Page] save the file '''mini_server_2.exe''' to drive '''C'''.


'''''Note'':''' Check out the mini server's [[Mini Servers: Support and download|support and download page]] detailing how to obtain full binaries for Apache.
'''''Note'':''' Check out the mini server's [[Mini Servers: Support and download|support and download page]] detailing how to obtain full binaries for Apache.
Line 291: Line 291:


{|
{|
| [[Image:uc_small_logo.gif]] || [[User:WikiSysop|Ric]]
| [[Image:uc_small_logo.gif]] || [[User:Ric|Ric]]
|}
|}


[[Category: To be published]]
 
[[Category: UniCenter]]
[[Category: UniCenter]]
[[Category: Mini Servers]]
[[Category: Mini Servers]]
[[Category: Oily Rag]]
[[Category: Oily Rag]]
[[Category: Self Install]]
[[Category: Self Install]]

Latest revision as of 05:54, 11 October 2012

Mini Servers:  Introduction | Support | Server 1 - Portable | Server 2 - Service | Server 3 - Portable Authentication | Server 4 - Portable Authen. SSL | Server 5 - SSL Standalone | Browsers dislike self-signed certificates | Server 6 - PHP 5.2.6 Portable | Server 7 - PHP 5.2.6 Service | Server 8 - MySQL Support | Guest Book | Server 9 - Perl 5.2.6 Portable | Server 10 - Perl 5.2.6 Service | Server 11 - MySQL 5.0.67 Portable | Server 12 - MySQL 5.0.67 Service | Server 13 - MySQL 4.1.22 Portable | Server 14 - MySQL 4.1.22 Service | phpMyAdmin - Mini support | MySQL - General problems

Mini Servers:
Compact but fully functional.
Apache 2.2.9
Apache 2.2.9

Mini Server 2 using Apache 2.2.9 Core run as service

This page covers running our mini server (describe on the previous page) as a service, its big brother Uniform Server 3.5-Apollo automates this process. We are not going to take this easy option! Well you would never learn anything by doing that, the manual alternative although slightly more difficult provides an insight into Apache and Uniform Servers flexibility.

Interestingly I looked at the surgery performed on both Apache and Uniform Server, seems Uniform Server was mutilated beyond all recognition only the batch files survived while Apache remained reasonably recognisable.

Note: Check support section for download details

Top

Specification

The server has the following specification:

  • Server shall run as a service
  • Only static HTML pages shall be served.
  • The server shall log all web requests.
  • All unused modules shall be disabled.

The only difference in this specification server is no longer portable but run as a service. This means every time you restart your PC the Apache server will automatically start. The advantage of this, when running a server permanently connected to the Internet should a power interruption occur the server will automatically restart when power is restored. If other elements of the system have been set accordingly then your Internet presence will also be restored.

Top

Security Issues

Security issues remain as explained on the previous page. I would like to stress this is about as best as it gets. If you take this server and pop it on a Unix box you can harden it a little more, however they are also faced with the same issues.

Top

Changes

Interestingly if you run the portable version of this sever on a dedicated disk the configuration file would remain unchanged. Use the two new batch files and you are ready to go.

However like many others I run this on C drive with loads of other software yep alarm bells security issue, I am neither complacent nor unaware of these issues, Apache is probably the most secure bit on kit I have on my PC. Anyway I digress; changes are all associated with paths more precisely relative and absolute.

Top

Relative

In theory Apache is quite happy to use relative paths for example “/” refers to the top level of the current disk. Uniform Server and our portable mini server use this to great advantage by defining a dedicated virtual disk “w”. However when changing across disk space Windows gets uptight about relative paths unless you can explicitly define a disk.

Absolute

Windows likes pegs hammered into the ground so to speak, hence when running as a service specifying absolute paths is essential to keep both parties happy for example c:\mini_server_2, the drive must be specified and then any folders etc.

No need to ramble on, just remember absolute paths are the order of the day so lets roll up ours sleeves and look at some code hacking.

Top

Configuring Apache

As mentioned above absolute paths are required in the configuration file. I have chosen to run the server on C drive from folder mini_server_2 you can use a different drive and or folder the choice is yours, just substitute accordingly. I have highlighted these absolute paths in bold interestingly these are the only changes required to our original configuration file.

Note: I have moved the server to port 8082 prevents clashing with other servers.

httpd.conf located in folder: C:\mini_server_2\usr\local\apache2\conf

# File name: http.conf
# Created By: The Uniform Server Development Team
# Edited Last By: Mike Gleaves (ric)
# Main Apache 2.2.9 HTTP server configuration file.
# V 1.0 14-7-2008

# ================================================
# Modules
# ================================================
 LoadModule authz_host_module modules/mod_authz_host.so
 LoadModule dir_module modules/mod_dir.so
 LoadModule log_config_module modules/mod_log_config.so
 LoadModule mime_module modules/mod_mime.so

# ========================================
# Basic settings
# ========================================
 Listen 8082
 ServerName localhost:8082
 ServerAdmin fred@www.somedomain.com
 UseCanonicalName Off
 ServerSignature Off
 HostnameLookups Off
ServerTokens Prod
 ServerRoot "c:/mini_server_2/usr/local/apache2"
 DocumentRoot "c:/mini_server_2/www"
 PidFile /logs/httpd.pid
<IfModule mod_dir.c>
  DirectoryIndex index.html index.htm
</IfModule>

# ========================================
# HTTP and performance settings
# ========================================
 Timeout 300
 KeepAlive On
 MaxKeepAliveRequests 100
 KeepAliveTimeout 15
<IfModule mpm_winnt.c>
  ThreadsPerChild 64
  MaxRequestsPerChild 0
</IfModule>

# ========================================
# Access control
# ========================================
<Directory />
  Options None
  AllowOverride None
  Order deny,allow
  Deny from all
</Directory>

<Directory "c:/mini_server_2/www">
  Order allow,deny
  Allow from all
</Directory>

# ========================================
# MIME encoding
# ========================================
 DefaultType text/plain
 TypesConfig /usr/local/apache2/conf/mime.types

# ========================================
# Logs: debug, info, notice, warn, error, crit
# ========================================
 LogLevel warn
 LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\"
 \"%{User-Agent}i\"" combined
 LogFormat "%h %l %u %t \"%r\" %>s %b" common
 LogFormat "%{Referer}i -> %U" referer
 LogFormat "%{User-agent}i" agent
 ErrorLog "logs/error_log"
 CustomLog "logs/access.log" combined
# ========================================

Top

install.bat

Batch files to install and uninstall Apache as a service are not very complex; the trick is to supply all the right parameters as shown.

Install service employs a nice bit of defensive programming when run the first line checks Apache’s configuration file for errors. Errors are listed including line numbers once corrected rerun the batch file. The second line installs Apache as a service once installed the third line starts the service.

install.bat located in folder: C:\mini_server_2
echo.
c:\mini_server_2\usr\local\apache2\bin\Apache.exe -k install -n "mini_server_2"
echo.
net start mini_server_2
echo.
echo Type http://localhost:8082 into your browser to access server.
echo.
pause

Top

uninstall.bat

The uninstall batch file first stops the “mini_server_2” service and then proceeds to uninstall it.

uninstall.bat located in folder: C:\mini_server_2
echo.
net stop mini_server_2
echo.
c:\mini_server_2\usr\local\apache2\bin\Apache.exe -k uninstall -n "mini_server_2"
echo.
echo Done
pause

Note 1: The service name mini_server_2 this along with a unique port number allows all mini servers to be run alongside each other.

Note 2: To avoid clashing with Uniform Server do not name the service Apache2.

Top

Command Line

After installing the Apache service with the above batch file you can start and stop the "mini_server_2" service at anytime using a command line this saves uninstalling the service every time you want to stop the server:

  • net stop mini_server_2
  • net start mini_server_2

Top

Support files

Each mini server is complete and zipped into a single self-extracting archive file.

Download

Download this server from SourceForge Project Page save the file mini_server_2.exe to drive C.

Note: Check out the mini server's support and download page detailing how to obtain full binaries for Apache.

Top

Extract files

Double click on mini_server_2.exe, starts the extraction process. No need to change the folder destination, click extract, this creates a new folder mini_server_2 containing two files and two folders.

  1. install.bat - Double click to install and start server as a service.
  2. uninstall.bat - Double click to stop and uninstall server service.
  3. usr - Folder containing the server.
  4. www - Folder containing a test web site (delete contents of this folder and place your site in www).

Top

Test

Testing is straight forward.

  1. Install the server by double clicking on install.bat (Checks config file, installs service and runs it)
  2. Type http://localhost:8082/ into the browser address bar.
  3. An index page is displayed, check out the test site MPG1.

Note 1: The server automatically starts when your PC is restarted (that’s the reason for installing as a service.)

Note 2: Adding extra pages or changing your web site there is no need to either restart or uninstall the server.

Note 3: Stop the service before making changes to Apache's configuration file; restarting service guarantees the new changes will be picked up.

Top

Your web site

Open the folder www located in folder *mini_server_2\www delete everything in this folder and copy your site in to it.

Note: Make sure one of your pages in folder www is named index.html or index.htm, otherwise you will need to type a page name in every time to access your site.

e.g. http://localhost/somepage.html

Top

Change drive letter and or folder

The server requires a fixed location currently: c:\mini_server_2

You can move the server to any drive and folder for example e:\my_server\mini_server_2

To do this you need to edit three files:

  • install.bat
  • uninstall.bat
  • httpd.conf (located in folder C:\mini_server_2\usr\local\apache2\conf)

Find all occurrences of c:\mini_server_2 and replace with e:\my_server\mini_server_2

Top

Change server default port

  • Open file: httpd.conf (Located in folder: C:\mini_server_2\usr\local\apache2\conf)
  • Locate the lines:
    Listen 8082
    ServerName localhost:8082
  • Change to:
    Listen 8080
    ServerName localhost:8080

This moves the server to the standard secondaty web server port

Note: Type http://localhost:8080 into a browser to view the site.

If port already in use try any value above 2000

Top

Multi Servers

You can run more than one copy of this server as a service.

To do this you need to:

  1. Create a new folder and copy the contents of folder mini_server_2 to it.
  2. Edit the files as for (Change drive letter and or folder)
  3. Change the port see above.
  4. Edit install.bat and uninstall.bat, change the service name from mini_server_2 to something unique e.g. mini_server_2x

Note: You can run the mini servers alongside Uniform Server 3.5-Apollo however you must start Uniform Server first.

Top

Putting the server on-line

If connected to the Internet by a router to put the server on-line you need to forward port 8082 (or the port you have chosen to run the server on).

Top

Summary

I have shown how to run Apache either in a portable or service configuration. It is a very powerful mini server you can use for either testing or putting your web site on-line (production server). The configuration file is clean allowing you to easily explore other Apache configurations.

If you want to make your server a little more private Mini Server 3 provides basic authentication.

Top


Ric