DNS-Less preview
#1
DNS-Less preview
Basically this is the DNS-less preview. It allows your users to view their sites while they wait for their domain to propagate.

Windows:
Code:
</virtualhost> # Add Alias for DNS-Less Previews <VirtualHost *:80> ServerName xxx.xxx.xxx.xxx DocumentRoot c:/zpanel/panel/ AliasMatch ^/~([a-zA-Z0-9]+)/?(.*) c:/zpanel/hostdata/$1/public_html/$2 <Directory c:/zpanel/hostdata> Options FollowSymLinks AllowOverride All Order Allow,Deny Allow from all 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 c:/zpanel/temp    </IfModule> </Directory>
Apache 2.2:
Code:
</virtualhost> # Add Alias for DNS-Less Previews <VirtualHost *:80>    ServerName xxx.xxx.xxx.xxx    DocumentRoot "/var/sentora/hostdata"    php_admin_value open_basedir "/var/sentora/hostdata:/var/sentora/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_terminate, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid, escapeshellcmd, escapeshellarg, exec"    AliasMatch ^/~([a-zA-Z0-9]+)/?(.*) /var/sentora/hostdata/$1/public_html/$2    <Directory /var/sentora/hostdata>        Options FollowSymLinks        AllowOverride All        Order Allow,Deny        Allow from all        DirectoryIndex index.html index.htm index.php index.asp index.aspx index.jsp index.jspa index.shtml index.shtm        <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/sentora/temp        </IfModule>    </Directory>
Apache 2.4:
Code:
</virtualhost> # Add Alias for DNS-Less Previews <VirtualHost *:80>    ServerName xxx.xxx.xxx.xxx    DocumentRoot "/var/sentora/hostdata"    php_admin_value open_basedir "/var/sentora/hostdata:/var/sentora/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_terminate, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid, escapeshellcmd, escapeshellarg, exec"    AliasMatch ^/~([a-zA-Z0-9]+)/?(.*) /var/sentora/hostdata/$1/public_html/$2    <Directory /var/sentora/hostdata>        Options FollowSymLinks        AllowOverride All        Require all granted        DirectoryIndex index.html index.htm index.php index.asp index.aspx index.jsp index.jspa index.shtml index.shtm        <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/sentora/temp        </IfModule>    </Directory>

Need to replace xxx.xxx.xxx.xxx with your server's public IP.
You enter this as a Global ZPanel/Sentora Entry in Module Admin>Apache Admin
This could be customized to use your main panel domain instead of IP
Example usage: http://75.68.13.153/~sscms/supersimplecms_tk/
-TGates - Project Council

SEARCH the Forums or read the DOCUMENTATION before posting!
Support Sentora and Donate: HERE

Find my support or modules useful? Donate to TGates HERE
Developers and code testers needed!
Contact TGates for more information
Reply


Messages In This Thread
DNS-Less preview - by TGates - 01-29-2015, 09:06 AM
RE: [HOW-TO] DNS-Less preview - by Me.B - 01-29-2015, 05:52 PM
RE: [HOW-TO] DNS-Less preview - by Ron-e - 04-01-2015, 04:37 AM
RE: [HOW-TO] DNS-Less preview - by Ron-e - 04-11-2015, 05:44 AM
RE: [HOW-TO] DNS-Less preview - by txt3rob - 06-24-2015, 06:17 PM
RE: [HOW-TO] DNS-Less preview - by Ron-e - 06-24-2015, 11:23 PM
RE: [HOW-TO] DNS-Less preview - by Ron-e - 06-24-2015, 11:41 PM
RE: [HOW-TO] DNS-Less preview - by yarrha - 07-28-2015, 11:45 PM
RE: [HOW-TO] DNS-Less preview - by Ron-e - 07-29-2015, 12:50 AM
RE: [HOW-TO] DNS-Less preview - by yarrha - 07-29-2015, 01:32 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)