Welcome Guest, Not a member yet? Register   Sign In
Build your first application
#10

Here is a template for creating VHOSTS using Windows and XAMPP.

Code:
#--------------------------------------------------------------
# For New VHosts
#--------------------------------------------------------------

#--------------------------------------------------------------
#
#--------------------------------------------------------------

#--------------------------------------------------------------
# HTTP:
#--------------------------------------------------------------
<VirtualHost *:80>
    DocumentRoot "C:/xampp/htdocs/project_name/public"
    ServerName server_name.local
    ServerAlias server_name.local
    <Directory "C:/xampp/htdocs/project_name/public">
        Order allow,deny
        Allow from all
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>

#--------------------------------------------------------------
# HTTPS:
#--------------------------------------------------------------
<VirtualHost *:443>
    DocumentRoot "C:/xampp/htdocs/project_name/public"
    ServerName server_name.local
    ServerAlias server_name.local
    SSLEngine on
    SSLCertificateFile "conf/ssl.crt/server.crt"
    SSLCertificateKeyFile "conf/ssl.key/server.key"
    <Directory "C:/xampp/htdocs/project_name/public">
        Options All
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>

#--------------------------------------------------------------
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply


Messages In This Thread
Build your first application - by pdos - 07-31-2020, 12:24 PM
RE: Build your first application - by jreklund - 08-01-2020, 06:01 AM
RE: Build your first application - by pdos - 08-01-2020, 07:52 AM
RE: Build your first application - by jreklund - 08-01-2020, 08:22 AM
RE: Build your first application - by pdos - 08-01-2020, 08:44 AM
RE: Build your first application - by jreklund - 08-01-2020, 09:50 AM
RE: Build your first application - by pdos - 08-01-2020, 10:25 AM
RE: Build your first application - by jreklund - 08-01-2020, 11:03 AM
RE: Build your first application - by pdos - 08-01-2020, 12:16 PM
RE: Build your first application - by InsiteFX - 08-02-2020, 04:07 AM
RE: Build your first application - by pdos - 08-02-2020, 10:47 AM
RE: Build your first application - by jreklund - 08-02-2020, 10:51 PM



Theme © iAndrew 2016 - Forum software by © MyBB