20 lines
526 B
Plaintext
20 lines
526 B
Plaintext
<VirtualHost *:80>
|
||
ServerName demo-devops.konnect.dev
|
||
|
||
ServerAdmin webmaster@localhost
|
||
|
||
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||
Redirect permanent / https://api-abana.esk.sh
|
||
</VirtualHost>
|
||
|
||
<VirtualHost *:443>
|
||
ServerName demo-devops.konnect.dev
|
||
|
||
ServerAdmin webmaster@localhost
|
||
DocumentRoot /var/www/html
|
||
|
||
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||
</VirtualHost>
|