Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Apache: Users

Apache config assessment

 

 

Apache users RSS feed   Index | Next | Previous | View Threaded


acastanheira2001 at yahoo

Oct 14, 2009, 10:41 AM

Post #1 of 4 (341 views)
Permalink
Apache config assessment

Hi,

I´ve made an apache lab config using ssl, jkmount and other stuffs.

But, I have some doubts:

1- How can I improve my config?

2- Is there anything missing?

3- Can I do the same with less config lines?

Finally, is there a way to make a config assessment?


Thanks,
André


__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd
" from the digest: users-digest-unsubscribe [at] httpd
For additional commands, e-mail: users-help [at] httpd


lists at jaqui-greenlees

Oct 14, 2009, 11:45 AM

Post #2 of 4 (322 views)
Permalink
Re: Apache config assessment [In reply to]

Andre Rodrigues wrote:
> Hi,
>
> I´ve made an apache lab config using ssl, jkmount and other stuffs.
>
> But, I have some doubts:
>
> 1- How can I improve my config?

we cannot answer that without seeing the config

> 2- Is there anything missing?

see above

> 3- Can I do the same with less config lines?

see above

> Finally, is there a way to make a config assessment?

assessment for what criteria?

Jaqui


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd
" from the digest: users-digest-unsubscribe [at] httpd
For additional commands, e-mail: users-help [at] httpd


acastanheira2001 at yahoo

Oct 15, 2009, 11:51 AM

Post #3 of 4 (305 views)
Permalink
Re: Apache config assessment [In reply to]

Hi jaqui,

My virtualhost config:

<VirtualHost *:443>
ServerName portal-des
DocumentRoot /srv/www/portal-des

HostnameLookups Off
UseCanonicalName Off
ServerSignature Off

SSLEngine on
SSLCertificateFile /etc/apache2/ssl.crt/portal-des.crt
SSLCertificateKeyFile /etc/apache2/ssl.key/portal-des.key

# DO I NEED TO UNCOMMENT THESE LINES?
# SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
#CustomLog logs/ssl_request_log \
# "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
# SSLCertificateChainFile /etc/apache2/ssl.crt/DigiCertCA.crt

<Directory /srv/www/portal-des >
Options Indexes FollowSymLinks
AllowOverride None
Order Deny,Allow
Deny from all
</Directory>

<Directory /srv/www/portal-des/sivace >
Options Indexes FollowSymLinks
AllowOverride None
Order Deny,Allow
Allow from all
</Directory>

ErrorLog /var/log/apache2/portal-error_log
CustomLog /var/log/apache2/portal-access_log combined

JkMount /lenf balancer
JkMount /lenf/* balancer

JkMount /counter balancer
JkMount /counter/* balancer

JkMount /status status
JkMount /status/* status

JkMount /ofp balancer
JkMount /ofp/* balancer

JkMount /support balancer
JkMount /support/* balancer

JkMount /web-console balancer
JkMount /web-console/* balancer

JkMount /jmx-console balancer
JkMount /jmx-console/* balancer

JkMount /logs balancer
JkMount /logs/* balancer

JkMount /css balancer
JkMount /css/* balancer

JkMount /img balancer
JkMount /img/* balancer

JkMount /js balancer
JkMount /js/* balancer

</VirtualHost>



Thanks,
André



----- Original Message ----
From: J. Greenlees <lists [at] jaqui-greenlees>
To: users [at] httpd
Sent: Wed, October 14, 2009 3:45:32 PM
Subject: Re: [users [at] http] Apache config assessment

Andre Rodrigues wrote:
> Hi,
>
> I´ve made an apache lab config using ssl, jkmount and other stuffs.
> But, I have some doubts:
>
> 1- How can I improve my config?

we cannot answer that without seeing the config

> 2- Is there anything missing?

see above

> 3- Can I do the same with less config lines?

see above

> Finally, is there a way to make a config assessment?

assessment for what criteria?

Jaqui


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd
" from the digest: users-digest-unsubscribe [at] httpd
For additional commands, e-mail: users-help [at] httpd





---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd
" from the digest: users-digest-unsubscribe [at] httpd
For additional commands, e-mail: users-help [at] httpd


lists at jaqui-greenlees

Oct 16, 2009, 1:43 PM

Post #4 of 4 (324 views)
Permalink
Re: Apache config assessment [In reply to]

Andre Rodrigues wrote:
> Hi jaqui,
>
> My virtualhost config:
>
> <VirtualHost *:443>
> ServerName portal-des
> DocumentRoot /srv/www/portal-des
>
> HostnameLookups Off
> UseCanonicalName Off
> ServerSignature Off
>
> SSLEngine on
> SSLCertificateFile /etc/apache2/ssl.crt/portal-des.crt
> SSLCertificateKeyFile /etc/apache2/ssl.key/portal-des.key
>
> # DO I NEED TO UNCOMMENT THESE LINES?
> # SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
> #CustomLog logs/ssl_request_log \
> # "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
> # SSLCertificateChainFile /etc/apache2/ssl.crt/DigiCertCA.crt
>
> <Directory /srv/www/portal-des >
> Options Indexes FollowSymLinks
> AllowOverride None
> Order Deny,Allow
> Deny from all
> </Directory>
>
> <Directory /srv/www/portal-des/sivace >
> Options Indexes FollowSymLinks
> AllowOverride None
> Order Deny,Allow
> Allow from all
> </Directory>
>
> ErrorLog /var/log/apache2/portal-error_log
> CustomLog /var/log/apache2/portal-access_log combined
>
> JkMount /lenf balancer
> JkMount /lenf/* balancer
>
> JkMount /counter balancer
> JkMount /counter/* balancer
>
> JkMount /status status
> JkMount /status/* status
>
> JkMount /ofp balancer
> JkMount /ofp/* balancer
>
> JkMount /support balancer
> JkMount /support/* balancer
>
> JkMount /web-console balancer
> JkMount /web-console/* balancer
>
> JkMount /jmx-console balancer
> JkMount /jmx-console/* balancer
>
> JkMount /logs balancer
> JkMount /logs/* balancer
>
> JkMount /css balancer
> JkMount /css/* balancer
>
> JkMount /img balancer
> JkMount /img/* balancer
>
> JkMount /js balancer
> JkMount /js/* balancer
>
> </VirtualHost>
>
>
>
> Thanks,
> André
>
>
>
> ----- Original Message ----
> From: J. Greenlees <lists [at] jaqui-greenlees>
> To: users [at] httpd
> Sent: Wed, October 14, 2009 3:45:32 PM
> Subject: Re: [users [at] http] Apache config assessment
>
> Andre Rodrigues wrote:
>> Hi,
>>
>> I´ve made an apache lab config using ssl, jkmount and other stuffs.
>> But, I have some doubts:
>>
>> 1- How can I improve my config?
>
> we cannot answer that without seeing the config
>
>> 2- Is there anything missing?
>
> see above
>
>> 3- Can I do the same with less config lines?
>
> see above
>
>> Finally, is there a way to make a config assessment?
>
> assessment for what criteria?
>


ok, well, I'm not able to help with the jkmount, I've never even looked
at it.

so it's going to be someone else on the list who will have to really
help, now that the information is available for them to start.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe [at] httpd
" from the digest: users-digest-unsubscribe [at] httpd
For additional commands, e-mail: users-help [at] httpd

Apache users RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.