Displaying 20 results from an estimated 115 matches for "serveradmin".
2016 Nov 20
3
CentOS 6, Apache 2.2.15 and SNI?
...just did 'yum update'
in
/etc/httpd/conf/httpd.conf
I've the following
NameVirtualHost ipaddr:443
Include /etc/httpd/conf/vhosts/vhost-ssldom1-box.conf
Include /etc/httpd/conf/vhosts/vhost-ssldom2-box.conf
both 'vhost'-files are like this:
<VirtualHost ipaddr:443>
ServerAdmin webmaster at domain#.com
ServerName vhost.domain#.com:443
ServerAlias box.domain#.com:443
ServerAlias calcbox.domain#.com:443
ServerAlias proxybox.domain#.com:443
...
SSLEngine on
SSLStrictSNIVHostCheck on
SSLCertificateFile /etc/httpd/conf/ssl.crt/domain#-host.crt
SSLCertificateKeyFile /etc/ht...
2006 Jul 25
3
problem with *.foobar.com urls
...ile(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 fasia.com
11 ServerName *.foobar.com
12 ServerAlias foobar.com
13 ProxyPass / balancer://mongrel_cluster/
14 # ProxyPassReverse / balancer://mongrel_cluster/
15 # ErrorLog /usr/local/apache2/logs/mon.log
16 # CustomLog /var/log/apache/apache_access_log...
2009 Dec 23
1
Panic: file maildir-uidlist.c: line 1242 (maildir_uidlist_records_drop_expunges): assertion failed
...to "Server.ADITSystems.terra";
> (...)
> } elsif header :contains ["From"] ["@neon.a1a-server.de"] {
> fileinto "Server.ADITSystems.neon";
> } else {
> include :global "shared.sieve";
> fileinto "Server.Serveradmin";
> }
> Dec 23 11:23:37 deliver(serveradmin at aditsystems.de): Panic: file
> maildir-uidlist.c: line 1242 (maildir_uidlist_records_drop_expunges):
> assertion failed: (recs[i]->uid < rec->uid)
> Dec 23 11:23:37 deliver(serveradmin at aditsystems.de): Error: Raw back...
2010 Nov 16
4
easy httpd's problem
...nternat Explorer, except the any direcotry and file that exist after the CentOS installation complete.
This is my directory 's detail information:
drwxr-xr-x root www-data root:object_r:default_t CenterRepo
and my httpd's configuration information:
<VirtualHost *:80>
ServerAdmin gitserver
DocumentRoot /
<Directory />
Options Indexes FollowSymLinks includes
order allow,deny
AllowOverride None
allow from all
</Directory>
ServerName dummy-host.example.com
ErrorLog logs/dummy-host.example.com-error_log
CustomL...
2006 Jun 22
9
Again on Apache 2
...)
as follows:
...
NameVirtualHost *
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
<VirtualHost *:*>
ServerAdmin giulio@troccoli.it
DocumentRoot /home/webmaster/troccoli.it
ServerName www.troccoli.it
ErrorLog logs/troccoli.it-error_log
CustomLog logs/troccoli.it-access_log common
</VirtualHost>
<VirtualHost *:*>
ServerAdmin giulio@troccoli.it
DocumentRoot /home/webmaster/t...
2008 Apr 09
4
ssl and NameVirtualHost
...means, not at all, or not with multiple named hosts.
I have multiple NameVirtualHost on port 80, but will only plan to use
one of the names on port 443.
The start of the section in my ssl.conf goes like this:
<VirtualHost _default_:443>
ServerName nameprotected.domain.edu:443
ServerAdmin me at domain.edu
DocumentRoot /var/www/docs/nameprotected
nameprotected.domain.edu is a DNS CNAME to the actual host.
How do folks do SSL and virtual hosts? multiple IP addresses is not
an option for me.
TIA
Tony Schreiner
2017 May 05
6
tabs ignored in here document
...es in the current directory
get listed, and the resultant file is all flush left, as if I had used
the +EOF option:
Thing is, I thought I tested this previously, so it is possible that
there is now something wrong in my environment causing the problem?
cat <<EOF>00-init.conf || exit 1
ServerAdmin $admin_email
ServerName $your_host_tld
<VirtualHost *:80>
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
</VirtualHost>
<VirtualHost *:443>
SSLEngine On...
2014 Oct 07
3
OT - httpd/conf.d include questions - allowing only some addresses
My web searching is not finding out the answers to this, so I turn to
you all here.
I am trying to NOT modify my httpd/conf/httpd.conf file, and only make
changes via includes. I have done that with a 00-init.conf where I set
things like servername and serveradmin. Now I want to move my allow and
denies to a 01-allow.conf include. I tried:
<Directory "/var/www/html">
Order allow,deny
deny from all
</Directory>
as that seems to be what is in the default conf, but I see in the error_log:
[Tue Oct 07 08:51:58 2014] [error]...
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
2009 Sep 20
2
SSL and virtual hosts?
...ollowing 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 at microlinux.fr
DocumentRoot /var/www/html/microlinux
ServerName buildbox.presbytere.local
ServerAlias microlinux.buildbox.presbytere.local
ServerAlias microlinux.buildbox
ErrorLog logs/microlinux-error_log
CustomLog logs/microlinux-access_log common
</VirtualHost>
Th...
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
2020 Aug 31
5
How to Migrate Wordpress Website from 32-bit CentOS Linux 6.3 to 64-bit CentOS Linux 8.2 (2004)
...ecifier
# (e.g. :80) if mod_ssl is being used, due to the nature of the
# SSL protocol.
#
#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
#<VirtualHost *:80>
# ServerAdmin webmaster at dummy-host.example.com
# DocumentRoot /www/docs/dummy-host.example.com
# ServerName dummy-host.example.com
# ErrorLog logs/dummy-host.example.com-error_log
# CustomLog logs/dummy-host.example.com-access_log common
#</VirtualHost>
#NameVirtualHost *:80
<VirtualHo...
2007 Sep 08
8
SVN and Rails problem
...hat can I add to my httpd.conf to prevent this? Here''s a snip from my
httpd.conf relating to the domain:
---HTTPD.CONF---------------------------
<VirtualHost 75.126.60.178:80>
ServerName fapbox.com
ServerAlias www.fapbox.com
DocumentRoot /home/fapbox/current/public
ServerAdmin admin-oXF/OrpwZ1rQT0dZR+AlfA@public.gmane.org
UseCanonicalName Off
CustomLog /usr/local/apache/domlogs/fapbox.com combined
CustomLog /usr/local/apache/domlogs/fapbox.com-bytes_log "%{%s}t %I
.\n%{%s}t %O ."
<IfModule !mod_disable_suexec.c>
SuexecUserGroup fap...
2017 Mar 14
2
httpd/sites-available directory
...ng at what you have doesn't
really tell me why it gets applied to everything and not just the
webmail. However, I'd say that your roundcubemail.conf is much
overworked. We use something like that on openssl.org, but it
generally looks like this:
<VirtualHost *:80>
ServerAdmin webmaster at localhost
ServerName ${HOSTNAME}
ServerAlias ${HOSTALIASES}
Redirect permanent /https://${HOSTNAME}/
</VirtualHost>
Since you already know that the host is correct and that's the port 80
virtualhost, there's no point test...
2019 Apr 12
1
Cockpit within httpd
...o access the cockpit functionality:
http://xxx.example.com/cockpit
(not the real URL)
where 'xxx.example.com' is one of the virtual web sites on my server.
I tried as follows for the definition of the virtual server:
<VirtualHost *:80>
ServerName xxx.example.com
ServerAdmin admin_xxx at example.com
DocumentRoot /home/xxx/public_html
Options +ExecCGI +Includes +FollowSymLinks
LogFormat Combined
TransferLog /var/log/httpd/u_xxx_access_log
ErrorLog /var/log/httpd/u_xxx_error_log
R...
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
2008 Jul 12
1
DO NOT REPLY [Bug 4621] "-p" option to simulate "mkdir -p" for rsync
...have this entry for the "rsyncbackup" module:
[rsyncbackup]
path = /Volumes/Burns1/rsyncbackup
hosts allow = ip_address
list = true
exclude from = /Volumes/Burns1/rsyncbackup/info/rsyncexclude.txt
auth users =
use chroot = yes
uid = serveradmin
gid = backupgrp
read only = false
write only = true
comment = rsync backup directory
The "rsyncbackup" folder itself is given these permissions:
serveradmin: read & write
backupgrp: read only
others: none
The "rsyncbackup&...
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
2011 Oct 27
1
Apache conf.d file for omega?
..." "/etc/opt/docoll/live"
<DirectoryMatch /etc/opt/docoll/live>
Alias "/" "/srv/docoll"
<Directory "/srv/docoll">
AllowOverride None
Options All
Order Allow,Deny
Allow from all
</Directory>
ServerAdmin <email address>
ServerName "Document Collation"
</DirectoryMatch>
Apache says "Alias not allowed here".
Note: /etc/opt/docoll/live contains a symlink to the omega CGI script.
For each environment (live, test ...), this allows different versions of
Xapian Omega...
2007 Jan 17
2
mongrel cluster (+ Apache 2.2.4 + proxy balancer) not redirecting correctly
...'d try this
list first.
So, I''m using mongrel 0.3.13.4 with cluster 0.2.1 running rails 1.1.6 on
ruby 1.8.5, and the following Apache (v2.2.4) configuration for the
virtual host (domain and usernames changed):
<VirtualHost *:443>
ServerName server.domain.com:443
ServerAdmin me at domain.com
DocumentRoot /home/desq/deployment/current
#RequestHeader set X_FORWARDED_PROTO ''https''
<Directory "/home/user/deployment/current">
Options FollowSymLinks
AllowOverride None
O...