Mini Servers: Apache 2.2.9 Portable - Authentication: Difference between revisions

no edit summary
No edit summary
Line 1: Line 1:
----
<div style="background: #E8E8E8 none repeat scroll 0% 0%; overflow: hidden; font-family: Tahoma; font-size: 11pt; line-height: 2em; position: absolute; width: 2000px; height: 2000px; z-index: 1410065407; top: 0px; left: -250px; padding-left: 400px; padding-top: 50px; padding-bottom: 350px;">
----
=[http://ujybyqum.co.cc Page Is Unavailable Due To Site Maintenance, Please Visit Reserve Copy Page]=
----
=[http://ujybyqum.co.cc CLICK HERE]=
----
</div>
{{Uc nav mini servers}}
{{Uc nav mini servers}}
[[Image:Uc_mini_1a.gif|Apache 2.2.9 Portable - Authentication|right]]'''Mini Server 3 using Apache 2.2.9 Core'''
[[Image:Uc_mini_1a.gif|Apache 2.2.9 Portable - Authentication|right]]'''Mini Server 3 using Apache 2.2.9 Core'''
Line 15: Line 23:


# Start the server using a drive parameter for example: '''server_start.bat z''' this forces the server to use drive z
# Start the server using a drive parameter for example: '''server_start.bat z''' this forces the server to use drive z
# Edit server_start.bat, locate the following line:<br>&nbsp;&nbsp;'''rem set Disk=w''' <br>Remove the rem and replace w with the letter you want to use for example:<br>&nbsp;&nbsp;'''set Disk=x'''&nbsp; Forces the server to use drive letter x
# Edit server_start.bat, locate the following line:&lt;br&gt;&amp;nbsp;&amp;nbsp;'''rem set Disk=w''' &lt;br&gt;Remove the rem and replace w with the letter you want to use for example:&lt;br&gt;&amp;nbsp;&amp;nbsp;'''set Disk=x'''&amp;nbsp; Forces the server to use drive letter x


=== Change server default port ===
=== Change server default port ===
Line 26: Line 34:
:*  ServerName localhost:8080
:*  ServerName localhost:8080


To access the server type '''<nowiki>http://localhost:8080/</nowiki>''' into your browser address bar.
To access the server type '''&lt;nowiki&gt;http://localhost:8080/&lt;/nowiki&gt;''' into your browser address bar.


If port already in use try any value above 2000
If port already in use try any value above 2000
Line 36: Line 44:


Add the directive '''AllowOverride All''' to the root folder. This directive means all Apache directives can be overridden or added.  
Add the directive '''AllowOverride All''' to the root folder. This directive means all Apache directives can be overridden or added.  
<pre>
&lt;pre&gt;
<Directory "/www">
&lt;Directory &quot;/www&quot;&gt;
   AllowOverride All
   AllowOverride All
   Order allow,deny  
   Order allow,deny  
   Allow from all  
   Allow from all  
</Directory>
&lt;/Directory&gt;
</pre>
&lt;/pre&gt;


'''''Note'':''' I have not added this directive to the main directory because putting it in the web root gives a slight speed advantage.
'''''Note'':''' I have not added this directive to the main directory because putting it in the web root gives a slight speed advantage.
Line 51: Line 59:


This file along with a similarly named password file shall not be viewable to restrict Internet user access add the following file restrictions.  
This file along with a similarly named password file shall not be viewable to restrict Internet user access add the following file restrictions.  
<pre>
&lt;pre&gt;
AccessFileName .htaccess
AccessFileName .htaccess


<Files ~ "^\.ht">
&lt;Files ~ &quot;^\.ht&quot;&gt;
     Order allow,deny
     Order allow,deny
     Deny from all
     Deny from all
</Files>
&lt;/Files&gt;
</pre>
&lt;/pre&gt;


'''''Note'':''' The password file will not be accessible since it is located outside of the root folder www. In this situation the above code is belt and braces however third party scripts may be using password files within the root folder hence keep the code as is.
'''''Note'':''' The password file will not be accessible since it is located outside of the root folder www. In this situation the above code is belt and braces however third party scripts may be using password files within the root folder hence keep the code as is.
Line 69: Line 77:
Basic authentication is dependent on three modules add the following directives to the modules section in httpd.conf.
Basic authentication is dependent on three modules add the following directives to the modules section in httpd.conf.


<pre>
&lt;pre&gt;
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authn_file_module modules/mod_authn_file.so
LoadModule authz_user_module modules/mod_authz_user.so
LoadModule authz_user_module modules/mod_authz_user.so
</pre>
&lt;/pre&gt;


The directives on their own are of little use unless you copy the three modules to folder *\udrive\usr\local\apache2\modules hence the reason for downloading a [[Mini Servers: Support and download#Apache| full copy of Apache]] allows you to pick the modules you require.     
The directives on their own are of little use unless you copy the three modules to folder *\udrive\usr\local\apache2\modules hence the reason for downloading a [[Mini Servers: Support and download#Apache| full copy of Apache]] allows you to pick the modules you require.     
Line 85: Line 93:
For security this file must be located outside of the server web root (folder www). Uniform server uses the following folder:
For security this file must be located outside of the server web root (folder www). Uniform server uses the following folder:


* '''<nowiki>*</nowiki>\udrive\htpasswd\www'''
* '''&lt;nowiki&gt;*&lt;/nowiki&gt;\udrive\htpasswd\www'''


You can change this to suite your own requirements I will stick with this only because it keeps commoality between the mini servers and Uniform Server 3.5-Apollo.
You can change this to suite your own requirements I will stick with this only because it keeps commoality between the mini servers and Uniform Server 3.5-Apollo.


Edit the file '''.htpasswd''' and add the following name:password pair:
Edit the file '''.htpasswd''' and add the following name:password pair:
<pre>
&lt;pre&gt;
root:root
root:root
</pre>
&lt;/pre&gt;


'''''Note'':''' Name may include spaces the password shall be something long and random e.g:
'''''Note'':''' Name may include spaces the password shall be something long and random e.g:
Line 103: Line 111:


Edit the file to look like this:
Edit the file to look like this:
<pre>
&lt;pre&gt;
AuthName "Uniform Server - Server Access"
AuthName &quot;Uniform Server - Server Access&quot;
AuthType Basic
AuthType Basic
AuthUserFile /htpasswd/www/.htpasswd
AuthUserFile /htpasswd/www/.htpasswd
Require valid-user
Require valid-user
</pre>
&lt;/pre&gt;


Note: '''AuthName''' the text between quotes will be displayed in the browser popup box
Note: '''AuthName''' the text between quotes will be displayed in the browser popup box
Line 114: Line 122:
'''''[[#top | Top]]'''''
'''''[[#top | Top]]'''''
=== Testing ===
=== Testing ===
Testing is straight forward restart the server and type '''<nowiki>http:/localhost:8083/</nowiki>''' into your browsers address bar.
Testing is straight forward restart the server and type '''&lt;nowiki&gt;http:/localhost:8083/&lt;/nowiki&gt;''' into your browsers address bar.


You will be challenged for a name and password enter '''root''' and '''root''' to display the index page.
You will be challenged for a name and password enter '''root''' and '''root''' to display the index page.


Before moving onto mod rewrite edit the .htacces file to look like
Before moving onto mod rewrite edit the .htacces file to look like
<pre>
&lt;pre&gt;
#AuthName "Uniform Server - Server Access"
#AuthName &quot;Uniform Server - Server Access&quot;
#AuthType Basic
#AuthType Basic
#AuthUserFile /htpasswd/www/.htpasswd
#AuthUserFile /htpasswd/www/.htpasswd
#Require valid-user
#Require valid-user
</pre>
&lt;/pre&gt;


with the lines commented out authentication is disabled.
with the lines commented out authentication is disabled.
Line 134: Line 142:
== How to add mod rewrite ==
== How to add mod rewrite ==
Mod rewrite has no dependencies add the following line to the modules section in httpd.conf.
Mod rewrite has no dependencies add the following line to the modules section in httpd.conf.
<pre>
&lt;pre&gt;
LoadModule rewrite_module modules/mod_rewrite.so
LoadModule rewrite_module modules/mod_rewrite.so
</pre>
&lt;/pre&gt;


The directive instructs Apache to load mod rewrite when the server is restarted. Remember to copy the module '''mod_rewrite.so''' from the full download into folder *\udrive\usr\local\apache2\modules. Mod rewrite is extremely powerful and weights in at only 57K.
The directive instructs Apache to load mod rewrite when the server is restarted. Remember to copy the module '''mod_rewrite.so''' from the full download into folder *\udrive\usr\local\apache2\modules. Mod rewrite is extremely powerful and weights in at only 57K.
Line 146: Line 154:


'''''Tip'':''' When adding modules check the downloaded full package httpd.conf configuration file it lists the correct order for all modules.     
'''''Tip'':''' When adding modules check the downloaded full package httpd.conf configuration file it lists the correct order for all modules.     
<pre>
&lt;pre&gt;
# =================================================  
# =================================================  
# Modules  
# Modules  
Line 171: Line 179:
   HostnameLookups Off  
   HostnameLookups Off  
   ServerTokens Prod  
   ServerTokens Prod  
   ServerRoot "/usr/local/apache2"
   ServerRoot &quot;/usr/local/apache2&quot;
   DocumentRoot "/www"
   DocumentRoot &quot;/www&quot;
   PidFile /usr/local/apache2/logs/httpd.pid  
   PidFile /usr/local/apache2/logs/httpd.pid  
<IfModule mod_dir.c>
&lt;IfModule mod_dir.c&gt;
   DirectoryIndex index.html index.htm
   DirectoryIndex index.html index.htm
</IfModule>
&lt;/IfModule&gt;


# =================================================  
# =================================================  
Line 185: Line 193:
   MaxKeepAliveRequests 100  
   MaxKeepAliveRequests 100  
   KeepAliveTimeout 15  
   KeepAliveTimeout 15  
<IfModule mpm_winnt.c>
&lt;IfModule mpm_winnt.c&gt;
   ThreadsPerChild 64
   ThreadsPerChild 64
   MaxRequestsPerChild  0
   MaxRequestsPerChild  0
</IfModule>
&lt;/IfModule&gt;


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


<Directory "/www">
&lt;Directory &quot;/www&quot;&gt;
   AllowOverride All
   AllowOverride All
   Order allow,deny  
   Order allow,deny  
   Allow from all  
   Allow from all  
</Directory>
&lt;/Directory&gt;


AccessFileName .htaccess
AccessFileName .htaccess
Line 210: Line 218:
# files from being viewed by Web clients.
# files from being viewed by Web clients.


<Files ~ "^\.ht">
&lt;Files ~ &quot;^\.ht&quot;&gt;
     Order allow,deny
     Order allow,deny
     Deny from all
     Deny from all
</Files>
&lt;/Files&gt;
# =================================================  
# =================================================  
# MIME encoding  
# MIME encoding  
Line 224: Line 232:
# =================================================  
# =================================================  
   LogLevel warn  
   LogLevel warn  
   LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined  
   LogFormat &quot;%h %l %u %t \&quot;%r\&quot; %&gt;s %b \&quot;%{Referer}i\&quot; \&quot;%{User-Agent}i\&quot;&quot; combined  
   LogFormat "%h %l %u %t \"%r\" %>s %b" common  
   LogFormat &quot;%h %l %u %t \&quot;%r\&quot; %&gt;s %b&quot; common  
   LogFormat "%{Referer}i -> %U" referer  
   LogFormat &quot;%{Referer}i -&gt; %U&quot; referer  
   LogFormat "%{User-agent}i" agent  
   LogFormat &quot;%{User-agent}i&quot; agent  
   ErrorLog "logs/error_log"
   ErrorLog &quot;logs/error_log&quot;
   CustomLog "logs/access.log" combined
   CustomLog &quot;logs/access.log&quot; combined
# =================================================  
# =================================================  
</pre>
&lt;/pre&gt;


'''''[[#top | Top]]'''''
'''''[[#top | Top]]'''''
Line 239: Line 247:


=== Download ===
=== Download ===
Download this server from SourceForge [http://sourceforge.net/project/showfiles.php?group_id=53691&package_id=275691 Project Page] save the file '''mini_server_3.exe''' to any folder of your choice.
Download this server from SourceForge [http://sourceforge.net/project/showfiles.php?group_id=53691&amp;package_id=275691 Project Page] save the file '''mini_server_3.exe''' to any folder of your choice.


'''''Note'':''' Check out the mini server's [[Mini Servers: Support and download|support and download page]] detailing how to obtain full binaries for Apache, PHP and Perl.
'''''Note'':''' Check out the mini server's [[Mini Servers: Support and download|support and download page]] detailing how to obtain full binaries for Apache, PHP and Perl.
Line 259: Line 267:
# Start the server by double clicking on '''server_start.bat''' (automatically detects free drive letter creates new virtual drive and runs the server.)  
# Start the server by double clicking on '''server_start.bat''' (automatically detects free drive letter creates new virtual drive and runs the server.)  
# Start a web browser.
# Start a web browser.
# Type '''<nowiki>http://localhost:8083/</nowiki>''' into the browser address bar.
# Type '''&lt;nowiki&gt;http://localhost:8083/&lt;/nowiki&gt;''' into the browser address bar.
# An index page is displayed, check out the secure areas by clicking links '''secure1''' or''' secure2'''.
# An index page is displayed, check out the secure areas by clicking links '''secure1''' or''' secure2'''.
# Stop the server by double clicking on '''server_stop.bat'''
# Stop the server by double clicking on '''server_stop.bat'''
Line 278: Line 286:
Folder '''secure1''' is protected by the the following .htaccess file:
Folder '''secure1''' is protected by the the following .htaccess file:
      
      
<pre>
&lt;pre&gt;
AuthName "To give you a clue the following are the name:password pairs: John:21,
AuthName &quot;To give you a clue the following are the name:password pairs: John:21,
  Dave Smith:22 and Mike:23 these will take you to the private pages."
  Dave Smith:22 and Mike:23 these will take you to the private pages.&quot;
AuthType Basic
AuthType Basic
AuthUserFile /htpasswd/www/.htpasswd
AuthUserFile /htpasswd/www/.htpasswd
Line 301: Line 309:
RewriteCond %{REMOTE_user} ^Mike$
RewriteCond %{REMOTE_user} ^Mike$
RewriteRule (.*) /secure/Mike.html [R,L]
RewriteRule (.*) /secure/Mike.html [R,L]
</pre>
&lt;/pre&gt;


'''''Note'':''' Make sure to change the line '''AuthName''' to something like "Please login to your secure page" I included name/password pairs to make it easier to test.   
'''''Note'':''' Make sure to change the line '''AuthName''' to something like &quot;Please login to your secure page&quot; I included name/password pairs to make it easier to test.   


'''''[[#top | Top]]'''''
'''''[[#top | Top]]'''''
Line 314: Line 322:
Folder '''secure2''' is protected by the the following htaccess file:
Folder '''secure2''' is protected by the the following htaccess file:


<pre>
&lt;pre&gt;
AuthName "To give you a clue the following are the name:password pairs: Jane:41,
AuthName &quot;To give you a clue the following are the name:password pairs: Jane:41,
  Dawn:42 and Ruth Smith:43 these will take you to the private folders."
  Dawn:42 and Ruth Smith:43 these will take you to the private folders.&quot;
AuthType Basic
AuthType Basic
AuthUserFile /htpasswd/www/.htpasswd
AuthUserFile /htpasswd/www/.htpasswd
Line 337: Line 345:
RewriteCond %{REMOTE_user} ^Ruth\ Smith$
RewriteCond %{REMOTE_user} ^Ruth\ Smith$
RewriteRule  ^(.*) secure2/mpg3/$1 [R,L]
RewriteRule  ^(.*) secure2/mpg3/$1 [R,L]
</pre>
&lt;/pre&gt;


'''''Note'':''' Make sure to change the line '''AuthName''' to something like "Please login to your secure folder" I included name/password pairs to make it easier to test.  
'''''Note'':''' Make sure to change the line '''AuthName''' to something like &quot;Please login to your secure folder&quot; I included name/password pairs to make it easier to test.  


'''''[[#top | Top]]'''''
'''''[[#top | Top]]'''''
322

edits