skip to Main Content

Phpmyadmin – Ngrok 3 virtual host with wamp 3.3.1

I am trying to view my local site on another terminal. However, the site does not display. On the Ngrok terminal: ngrok.exe http 80 On the local server's httpd-vhosts.conf file : <VirtualHost *:80> ServerName test.local serverAlias aee9-89-85-88-146.eu.ngrok.io DocumentRoot "c:/wamp64/www/dev/test" <Directory…

VIEW QUESTION

SSL VirtualHost showing test page – Apache

I am using Apache httpd and have the following VirtualHost configuration: <VirtualHost *:443> ServerName www.test.site ServerAlias test.site DocumentRoot /var/www/test.site/html ErrorLog /var/www/test.site/log/error.log CustomLog /var/www/test.site/log/requests.log combined SSLEngine on SSLCertificateFile /etc/pki/tls/certs/ca.crt SSLCertificateKeyFile /etc/pki/tls/private/ca.key <Directory /var/www/html> AllowOverride none Order Allow,Deny Allow from all </Directory>…

VIEW QUESTION

why show me :8000 in my vircualhost in laragon? – Laravel

in host file : # 127.0.0.1 localhost ::1 localhost 127.0.0.1 daily_tasks.local #laragon magic! D:laragonetcapache2sites-enabledauto.daily_tasks.local.conf : <VirtualHost *:80> DocumentRoot "D:/laragon/www/daily_tasks/public" ServerName daily_tasks.local ServerAlias *.daily_tasks.local <Directory "D:/laragon/www/daily_tasks/public"> AllowOverride All Require all granted </Directory> </VirtualHost> # If you want to use SSL, enable…

VIEW QUESTION
Back To Top
Search