2012-12-13 3 views
2

- 안녕하세요. 전 단지 전용 서버 (우분투 12.4)를 빌려주고 아파치 + PHP, MySQL 등을 설치합니다 ...하지만 도메인을 가상화하기 위해 SSH를 사용하면 (가상 호스트) litle입니다.ZPanelcp, 도메인 정품 인증이 작동하지 않습니다.

new.domain.com

new.otherdomain : 나는 약간의 GUI 관리 패널을 설치하기로 결정하고 모든 오류없이 잘 설치하고 내가 처음으로 두 도메인 같은 뭔가를 설정할 수 있도록도 ZPanelcp 마지막 버전에 대한 결정하므로 비트 노동자 .com

이러한 도메인은 해당 도메인의 zpanel DNS를 설정하지 않고도 성공적으로 활성화되었지만 다음 날 나는 whe n ZPanel 쇼에서 다른 도메인을 "라이브"로 만들려고 시도하지만 웹 브라우저에서 볼 수 없습니다. 실제로 활성화되지 않았습니다. 다시 데몬을 다시 실행하고 BIND를 다시 시작하면 아파치가 다시 시작됩니다. 내 서버 conf 파일이지만 아무 것도 내 서버를 재부팅 할 필요가 없습니다. 내 서버는 정적 IP를 사용하지 않습니다.

여기 내 Zpanel, apache2 conf 파일이 있습니다.

아파치 파일 :

폴더 파일 :

# Here is last lines of this files related to my problem 
# Include of directories ignores editors' and dpkg's backup files, 
# see the comments above for details. 

# Include generic snippets of statements 
Include conf.d/ 

# Include the virtual host configurations: 
Include sites-enabled/ 


ServerName cp.zpanel.com 
Include /etc/zpanel/configs/apache/httpd.conf 

/etc/apache2/ports.conf
/etc/apache2/apache2.conf
# If you just change the port or add more ports here, you will likely also 
# have to change the VirtualHost statement in 
# /etc/apache2/sites-enabled/000-default 
# This is also true if you have upgraded from before 2.2.9-3 (i.e. from 
# Debian etch). See /usr/share/doc/apache2.2-common/NEWS.Debian.gz and 
# README.Debian.gz 

NameVirtualHost *:80 
Listen 80 

<IfModule mod_ssl.c> 
    # If you add NameVirtualHost *:443 here, you will also have to change 
    # the VirtualHost statement in /etc/apache2/sites-available/default-ssl 
    # to <VirtualHost *:443> 
    # Server Name Indication for SSL named virtual hosts is currently not 
    # supported by MSIE on Windows XP. 
    Listen 443 
</IfModule> 

<IfModule mod_gnutls.c> 
    Listen 443 
</IfModule> 

/등/아파치가/사이트 활성화/000-기본

<VirtualHost *:80> 
     ServerAdmin [email protected] 

     DocumentRoot /var/www 
     <Directory /> 
       Options FollowSymLinks 
       AllowOverride All 
     </Directory> 
     <Directory /var/www/> 
       Options Indexes FollowSymLinks MultiViews 
       AllowOverride All 
       Order allow,deny 
       allow from all 
     </Directory> 

     ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ 
     <Directory "/usr/lib/cgi-bin"> 
       AllowOverride All 
       Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch 
       Order allow,deny 
       Allow from all 
     </Directory> 

     ErrorLog ${APACHE_LOG_DIR}/error.log 

     # Possible values include: debug, info, notice, warn, error, crit, 
     # alert, emerg. 
     LogLevel warn 

     CustomLog ${APACHE_LOG_DIR}/access.log combined 
</VirtualHost> 

/등/아파치/사이트-가능/기본

<VirtualHost *:80> 
     ServerAdmin [email protected] 

     DocumentRoot /var/www 
     <Directory /> 
       Options FollowSymLinks 
       AllowOverride All 
     </Directory> 
     <Directory /var/www/> 
       Options Indexes FollowSymLinks MultiViews 
       AllowOverride All 
       Order allow,deny 
       allow from all 
     </Directory> 

     ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ 
     <Directory "/usr/lib/cgi-bin"> 
       AllowOverride All 
       Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch 
       Order allow,deny 
       Allow from all 
     </Directory> 

     ErrorLog ${APACHE_LOG_DIR}/error.log 

     # Possible values include: debug, info, notice, warn, error, crit, 
     # alert, emerg. 
     LogLevel warn 

     CustomLog ${APACHE_LOG_DIR}/access.log combined 
</VirtualHost> 

을/etc/zpanel/CONFIGS/apache/httpd.conf

# ZPanel Apache Include file for CentOS Linux 
# Written by Bobby Allen, 15/05/2011 

# Set the Zpanel Alias (used for development, sable will eventually use a VHOST) 
Alias /zpanel /etc/zpanel/panel 

# Setup the directory settings and PHP security flags for the Zpanel application directory. 
<Directory /etc/zpanel/panel> 
     Options FollowSymLinks 
     DirectoryIndex index.php 
     <IfModule mod_php5.c> 
       AddType application/x-httpd-php .php 
       php_flag magic_quotes_gpc Off 
       php_flag track_vars On 
       php_flag register_globals Off 
       php_admin_value upload_tmp_dir /var/zpanel/temp 
     </IfModule> 

</Directory> 

# Disallow web access to directories that don't need it/that we don't want people looking in! 
<Directory /etc/zpanel/panel/cnf> 
    Order Deny,Allow 
    Deny from All 
</Directory> 

# Set server tokens (security??) 
ServerTokens Maj 

# Now we include the generic VHOST configuration file that holds all the ZPanel user hosted vhost data 
Include /etc/zpanel/configs/apache/httpd-vhosts.conf 

/etc/zpanel/configs/apache/httpd-vhosts.conf

################################################################ 
# Apache VHOST configuration file 
# Automatically generated by ZPanel 10.0.1 
# Generated on: 09:15 13th Dec 2012 CET 
################################################################ 

NameVirtualHost *:80 

# Configuration for ZPanel control panel. 
<VirtualHost *:80> 
ServerAdmin [email protected] 
DocumentRoot "/etc/zpanel/panel/" 
ServerName cp.zpanel.com 
ServerAlias *.cp.zpanel.com 
AddType application/x-httpd-php .php 
<Directory "/etc/zpanel/panel/"> 
Options FollowSymLinks 
     AllowOverride All 
     Order allow,deny 
     Allow from all 
</Directory> 

# Custom settings are loaded below this line (if any exist) 

</VirtualHost> 

################################################################ 
# ZPanel generated VHOST configurations below..... 
################################################################ 


# DOMAIN: new.domain.com 
<virtualhost *:80> 
ServerName new.domain.com 
ServerAlias new.domain.com www.new.domain.com 
ServerAdmin [email protected] 
DocumentRoot "/var/zpanel/hostdata/zadmin/public_html/new_domain_com" 
php_admin_value open_basedir "/var/zpanel/hostdata/zadmin/public_html/new_domain_com:/var/zpanel/temp/" 
php_admin_value suhosin.executor.func.blacklist "passthru, show_source, shell_exec, system, pcntl_exec, popen, pclose, proc_open, proc_nice, proc_terminate, proc_get_status, proc_close, leak, apache_child_$ 
ErrorLog "/var/zpanel/logs/domains/zadmin/new.domain.com-error.log" 
CustomLog "/var/zpanel/logs/domains/zadmin/new.domain.com-access.log" combined 
CustomLog "/var/zpanel/logs/domains/zadmin/new.domain.com-bandwidth.log" common 
<Directory /> 
Options FollowSymLinks Indexes 
AllowOverride All 
Order Allow,Deny 
Allow from all 
</Directory> 
AddType application/x-httpd-php .php3 .php 
ScriptAlias /cgi-bin/ "/_cgi-bin/" 
<location /cgi-bin> 
AddHandler cgi-script .cgi .pl 
Options ExecCGI -Indexes 
</location> 
ErrorDocument 403 /_errorpages/403.html 
ErrorDocument 500 /_errorpages/500.html 
ErrorDocument 404 /_errorpages/404.html 
ErrorDocument 510 /_errorpages/510.html 
DirectoryIndex index.html index.htm index.php index.asp index.aspx index.jsp index.jspa index.shtml index.shtm 
# Custom Global Settings (if any exist) 

# Custom VH settings (if any exist) 

</virtualhost> 
# END DOMAIN: new.domain.com 
################################################################ 
##ETC other domains## 

/etc/hosts 파일

### Hetzner Online AG installimage 
# nameserver config 
# IPv4 
127.0.0.1 localhost 
6.8.81.52 Ubuntu-1210-quantal-64-minimal 
# 
# IPv6 
::1 ip6-localhost ip6-loopback 
fe00::0 ip6-localnet 
ff00::0 ip6-mcastprefix 
ff02::1 ip6-allnodes 
ff02::2 ip6-allrouters 
ff02::3 ip6-allhosts 
+1

[SuperUser] (http://superuser.com/) 또는 [ServerFault] (http://serverfault.com/) 또는 _possibly_ [Webmasters] (http : // 웹 마스터)에서이 질문을하는 것이 좋습니다. stackexchange.com/) (웹마 스터는 서버 설정을 디자인/서체 유형 문제만큼 처리하지는 않지만. ^^) – Jon

답변

0

는 아파치 - vhosts.conf 파일의 권한을 확인합니다. 어쩌면 당신은 쓰기 권한이 없습니다.

관련 문제