| Server IP : 127.0.0.1 / Your IP : 216.73.216.109 Web Server : Apache/2.4.54 (Win64) OpenSSL/1.1.1q PHP/8.1.10 System : Windows NT DESKTOP-E5T4RUN 10.0 build 19045 (Windows 10) AMD64 User : SERVERWEB ( 0) PHP Version : 8.1.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/laragon/etc/apache2/sites-enabled/ |
Upload File : |
#
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/trunk/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.
#
# Use name-based virtual hosting.
#
#
# 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.
#
# First Virtual Host must be a shallow duplicate of the main host
# in httpd.conf
<VirtualHost _default_:80>
DocumentRoot "c:/laragon/www"
ServerName quillacollo.gob.bo
<Directory "C:/laragon/www">
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
<VirtualHost _default_:443>
DocumentRoot "c:/laragon/www"
ServerName quillacollo.gob.bo
<Directory "C:/laragon/www">
AllowOverride All
Require all granted
</Directory>
SSLEngine on
SSLCertificateFile "C:/laragon/bin/apache/httpd-2.4.54-win64-VS16/conf/ssl/quillacollo.gob.bo-crt.pem"
SSLCertificateKeyFile "C:/laragon/bin/apache/httpd-2.4.54-win64-VS16/conf/ssl/quillacollo.gob.bo-key.pem"
SSLCertificateChainFile "C:/laragon/bin/apache/httpd-2.4.54-win64-VS16/conf/ssl/quillacollo.gob.bo-chain.pem"
</VirtualHost>