Displaying 20 results from an estimated 600 matches similar to: "CentOS 6, Apache 2.2.15 and SNI?"
2016 Nov 20
0
CentOS 6, Apache 2.2.15 and SNI?
It doesn't appear you have a ServerName or ServerAlias for the naked domains (sans subdomain), so they're both being answered by the first VirtualHost entry?
> On Nov 20, 2016, at 9:24 AM, Walter H. <Walter.H at mathemainzel.info> wrote:
>
> Hello,
>
> is Apache 2.2 which is part of the CentOS distribution capable of SNI?
>
> I have troubles that are coming
2014 Jul 03
2
Cannot access shared home directories from linux machine
Hi,
I configured a share for home-directories on my Debian Samba PDC (4.1.9)
and connected the share on another linux machine (terminal server) via
/etc/fstab:
//192.168.10.51/home /home/DOMAIN/ cifs
credentials=/root/.smbcredentials,iocharset=utf8 0 0
The .smbcredentials file contains the Domain Administrators
username/password. The share is mounted successfully,
2006 Jul 25
3
problem with *.foobar.com urls
I am using Apache2.2 + mod_proxy_balancer + mongrel setup and my
mongrel.conf file(for apache is like this)
2
3 <Proxy balancer://mongrel_cluster>
4 BalancerMember http://127.0.0.1:9000
5 BalancerMember http://127.0.0.1:9001
6 BalancerMember http://127.0.0.1:9002
7 </Proxy>
8
9 <VirtualHost *>
10 ServerAdmin rags at
2007 Nov 22
4
reg vhost in apache
Hi all,
I am facing one problem in configuration of httpd-vhosts.
my requirment is if url comes from servername (i.e http://sutra) it
should redirect to my home page.if url comes from serverAlias(i.e
http://sutrateam) it should go to advance search page....if any one
knows how to do pls help me
below file is my vhost file
<VirtualHost *:80>
ServerName sutra
ServerAlias
2006 Apr 24
12
setup a staging site?
Hi, i''m wondering how to setup a staging site for my RoR app. Right now i
run webrick on my laptop to develop, then i svn commit my changes to the
production server. However i need to make my development environment
available to others and not just for me on my laptop.
I have RoR setup on a hosted vps server which runs in production
environment. Its on apache 1.3 and mysql. How can i
2005 Dec 08
3
lighttpd proxy w/ apache2
I''ve tried a bunch of things trying to get ruby/apache2 and php working
together. I looked over my earlier post and followed the instructions
on ezra''s website to install lighttpd on debian. I''ve gotten really far
but I think there is one bit missing:
1. I got apache2 and php working together
2. I got lighttpd working on port 3000 and my rails app launches ok
2007 Sep 08
8
SVN and Rails problem
Hi guys,
I''ve finally managed to get my server up and running with
mongrel_cluster and all that jazz. My rails app works fine, but when I
try to access my svn repos as I was doing before everything was setup
rail is giving me a 404.
What can I add to my httpd.conf to prevent this? Here''s a snip from my
httpd.conf relating to the domain:
---HTTPD.CONF---------------------------
2017 Mar 14
2
httpd/sites-available directory
I just received some advice from a colleague of a colleague over at
openssl.org. But they use debian. Please look at this and help me out
on how Centos7 handles this:
Note the comment of the location of virtualhost config files. Centos7
does not have a "man a2ensite".
thanks
Rewriterules and https. Actually, looking at what you have doesn't
really tell me why it gets applied
2006 Oct 06
6
virtual host on latest centos 4.4
Good morning All,
I have a slight issue with apache virtual hosts not working on my newly
installed CentOS (4.4).
I am very new to Linux, however I have experience with apache etc on
'w1nd0ws'. I've been round and round in the apache conf file and to no
avail.
Basically if I setup a virtual host the default then looks at it. Also,
if I setup multiple virtual hosts they all look at
2009 Sep 20
2
SSL and virtual hosts?
Hi,
I successfully managed to use SSL on a local webserver for testing
purposes, following the section "Using SSL" in the Chapter "Using
Apache" of the "Definitive Guide to CentOS". Now I wonder: how can I use
SSL with virtual hosts?
I have several virtual hosts defined. Let's say I want to use SSL with
this one:
<VirtualHost *:80>
ServerAdmin info
2017 Mar 14
2
httpd/sites-available directory
The goal is to have access to a specific virtual host on port 80, to be
routed to port 443. Any other port 80 access is left as is.
So let us assume a server foo.bar.com and the specific virtual host is
webmail.bar.com
So I have tried:
<VirtualHost *:80>
ServerName webmail.bar.com
ServerAlias webmail
RewriteEngine On
ReWriteCond %{HTTP_HOST}
2006 Mar 22
5
Apache - Rails communication.
Please, if this question is not appropriate to this list please direct
me elsewhere. If it has been discussed in a previous thread, please
direct me there. An initial search of the archives did not appear to
show anything.
I am new to Rails but not to app servers having 4 years with J2EE.
The set up of a Rails app seams strait forward and I understand the
MVC model. Initial test code has
2007 May 29
4
undefined method `define_a_column' for class `OCI8::Cursor'
Hi,
Environment: Solaris 10, Orale 10g, Apache 2.2, Ruby 1.8.4, Rails
1.2.3, Ruby OCI8 1.0.0-rc2
As soon as I compiled and installed the Ruby/OCI8 interface, I got the
following error from my application:
=========================
[notice] mod_fcgid: call /export/home/invido/invido/portal2/public/
dispatch.fcgi with wrapper /usr/local/bin/ruby /export/home/invido/
2015 Aug 27
7
apache mysterious 404 error
Hey guys,
Just have a question about apache. Hoping to get an opinion on this.
I've just setup a site under apache 2.4.
And made sure that the document root setup in the vhost for the site I'm
serving has permissions for the apache user. Yet some of the files are
throwing a 404 error in a browser even tho they are clearly present and
accounted for on the file system.
For example,
2007 Apr 02
10
multiple virtual host?
I am trying to serve up two applications from one box. (It''s not a
commercial system; it''s just a box on my desktop, that I''m using to test
out RoR.)
SETUP. In my httpd.conf, I''ve got something like
<VirtualHost *:80>
ServerName URL
ServerAlias URL
ServerAdmin USER@PLACE
ProxyPass /APP http://127.0.0.1:8000/APP
ProxyPassReverse
2013 May 13
2
Creating defined resources based on array of parameters.
Hi all,
With the goal of making my code a little more DRY, I am trying to define
resource parameters in an array of hashes, and then create defined
resources from these array items. I am having trouble figuring out the
syntax for accessing the hash values for the hash currently being worked on
("self?").
Here''s the code to make it clear:
##### Configuration arguments
2007 Jun 12
2
Samba 3.0.25a - FreeBSD - permissions problem?
I have a problem with the latest Samba (3.0.25a) running under FreeBSD
(recent STABLE: FreeBSD 6.2-STABLE #41: Mon Jun 11 19:24:30 CEST 2007).
I run multiple Samba/FreeBSD file servers (in a Windows 2003 domain with
Windows 2003 DCs), and everything worked quite nicely until this week.
After an upgrade (both Samba and OS), I have a serious problem with
access.
I am using pam_winbind with
2006 Jun 09
2
Virtualhost, Alias & Subdomains
I am having a problem with subdomains, alias & virtual hosts
Centos 4.3, Apache 2.0.52 & PHP 5.04
I can get the primary to work, but not the aliased servers.
http.conf extract
*********
NameVirtualHost *
<VirtualHost *>
ServerName www.domain.com
DocumentRoot /var/www/html/domain/
ServerAlias www.altdomain.com <http://www.altdomain.com>
</VirtualHost>
<VirtualHost
2013 May 17
3
client connection errors: SSL, SNI and DNS_ALT_NAMES Oh My
Hi All,
I''ve run into a bit of a tangle.
I currently have two puppet masters which are "load balanced" with round
robin DNS (one is also the CA). I''m using dns_alt_names to let them each
answer to puppet.my.domain.com
For the past year this has been fine.
About a week ago I tried to add a third & while all my Linux clients are
happy with the new arrangement,
2007 Jan 03
12
Frustrating Error
I am followint this article,
http://blog.codahale.com/2006/06/19/time-for-a-grown-up-server-rails-mongrel-apache-capistrano-and-you/
...but I keep getting this error in the log...not sure what to try next...
** Daemonized, any open files are closed. Look at log/mongrel.8000.pid and
log/mongrel.log for info.
** Starting Mongrel listening at 127.0.0.1:8000