Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Load necessary modules
- LoadModule mime_module modules/mod_mime.so
- LoadModule dir_module modules/mod_dir.so
- LoadModule alias_module modules/mod_alias.so
- LoadModule php7_module "C:/php-7.4.33/php7apache2_4.dll"
- LoadModule authz_core_module modules/mod_authz_core.so
- LoadModule authz_host_module modules/mod_authz_host.so
- LoadModule rewrite_module modules/mod_rewrite.so
- # PHP configuration
- AddType application/x-httpd-php .php
- PHPIniDir "C:/php-7.4.33"
- # Listen on port 81
- Listen 81
- ServerName localhost
- # Virtual host for localhost or IP address
- <VirtualHost *:81>
- ServerName superplastin.system
- DocumentRoot "D:/Agronum/docker/suplas/absensi-web-superplastin/public/"
- <Directory "D:/Agronum/docker/suplas/absensi-web-superplastin/public/">
- Options Indexes FollowSymLinks
- AllowOverride All
- Require all granted
- DirectoryIndex index.php index.html
- </Directory>
- ErrorLog "logs/superplastin-error.log"
- </VirtualHost>
- # Virtual host for superplastin-mirror.dev
- <VirtualHost *:81>
- ServerName superplastin.mirror
- DocumentRoot "D:/Agronum/docker/suplas/absensi-web-superplastin-mirror/public/"
- <Directory "D:/Agronum/docker/suplas/absensi-web-superplastin-mirror/public/">
- Options Indexes FollowSymLinks
- AllowOverride All
- Require all granted
- DirectoryIndex index.php index.html
- </Directory>
- ErrorLog "logs/superplastin-mirror-error.log"
- </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement