Add portable version of Laragon
This commit is contained in:
19
etc/apache2/alias/adminer.conf
Normal file
19
etc/apache2/alias/adminer.conf
Normal file
@@ -0,0 +1,19 @@
|
||||
Alias /adminer "C:/laragon/etc/apps/adminer/"
|
||||
|
||||
# to give access from outside
|
||||
# replace the lines
|
||||
#
|
||||
# Require local
|
||||
#
|
||||
# by
|
||||
#
|
||||
# Require all granted
|
||||
#
|
||||
|
||||
<Directory "C:/laragon/etc/apps/adminer/">
|
||||
Options Indexes FollowSymLinks MultiViews
|
||||
AllowOverride all
|
||||
|
||||
Require local
|
||||
|
||||
</Directory>
|
||||
40
etc/apache2/alias/laragon.conf
Normal file
40
etc/apache2/alias/laragon.conf
Normal file
@@ -0,0 +1,40 @@
|
||||
Alias /laragon "C:/laragon/etc/apps/laragon/"
|
||||
|
||||
# to give access from outside
|
||||
# replace the lines
|
||||
#
|
||||
# Require local
|
||||
#
|
||||
# by
|
||||
#
|
||||
# Require all granted
|
||||
#
|
||||
|
||||
<Directory "C:/laragon/etc/apps/laragon/">
|
||||
Options Indexes FollowSymLinks MultiViews
|
||||
AllowOverride None
|
||||
|
||||
Require local
|
||||
|
||||
</Directory>
|
||||
|
||||
<Directory "C:/laragon/etc/apps/laragon/uploads/">
|
||||
Options Indexes FollowSymLinks MultiViews
|
||||
AllowOverride None
|
||||
DirectoryIndex None.Always.Listing
|
||||
Require local
|
||||
|
||||
SetHandler none
|
||||
SetHandler default-handler
|
||||
|
||||
Options -ExecCGI
|
||||
RemoveHandler .cgi .php .phtml .pl .py .pyc .pyo
|
||||
<Files *>
|
||||
|
||||
SetHandler none
|
||||
SetHandler default-handler
|
||||
|
||||
Options -ExecCGI
|
||||
RemoveHandler .cgi .php phtml .pl .py .pyc .pyo
|
||||
</Files>
|
||||
</Directory>
|
||||
19
etc/apache2/alias/memcached.conf
Normal file
19
etc/apache2/alias/memcached.conf
Normal file
@@ -0,0 +1,19 @@
|
||||
Alias /memcached "C:/laragon/etc/apps/memcached/"
|
||||
|
||||
# to give access from outside
|
||||
# replace the lines
|
||||
#
|
||||
# Require local
|
||||
#
|
||||
# by
|
||||
#
|
||||
# Require all granted
|
||||
#
|
||||
|
||||
<Directory "C:/laragon/etc/apps/memcached/">
|
||||
Options Indexes FollowSymLinks MultiViews
|
||||
AllowOverride all
|
||||
|
||||
Require local
|
||||
|
||||
</Directory>
|
||||
19
etc/apache2/alias/phpmyadmin.conf
Normal file
19
etc/apache2/alias/phpmyadmin.conf
Normal file
@@ -0,0 +1,19 @@
|
||||
Alias /phpmyadmin "C:/laragon/etc/apps/phpMyAdmin/"
|
||||
|
||||
# to give access from outside
|
||||
# replace the lines
|
||||
#
|
||||
# Require local
|
||||
#
|
||||
# by
|
||||
#
|
||||
# Require all granted
|
||||
#
|
||||
|
||||
<Directory "C:/laragon/etc/apps/phpMyAdmin/">
|
||||
Options Indexes FollowSymLinks MultiViews
|
||||
AllowOverride all
|
||||
|
||||
Require local
|
||||
|
||||
</Directory>
|
||||
19
etc/apache2/alias/redis.conf
Normal file
19
etc/apache2/alias/redis.conf
Normal file
@@ -0,0 +1,19 @@
|
||||
Alias /redis "C:/laragon/etc/apps/phpredisAdmin/"
|
||||
|
||||
# to give access from outside
|
||||
# replace the lines
|
||||
#
|
||||
# Require local
|
||||
#
|
||||
# by
|
||||
#
|
||||
# Require all granted
|
||||
#
|
||||
|
||||
<Directory "C:/laragon/etc/apps/phpredisAdmin/">
|
||||
Options Indexes FollowSymLinks MultiViews
|
||||
AllowOverride all
|
||||
|
||||
Require local
|
||||
|
||||
</Directory>
|
||||
26
etc/apache2/fcgid.conf
Normal file
26
etc/apache2/fcgid.conf
Normal file
@@ -0,0 +1,26 @@
|
||||
LoadModule fcgid_module "C:/laragon/etc/apache2/modules/mod_fcgid-2.3.9-Win32-VC14.so"
|
||||
|
||||
<IfModule fcgid_module>
|
||||
FcgidInitialEnv PATH "C:/laragon/bin/php/php-5.4.9-nts-Win32-VC9-x86;C:/Windows/system32;C:/Windows;C:/Windows/System32/Wbem;"
|
||||
FcgidInitialEnv SystemRoot "C:/Windows"
|
||||
FcgidInitialEnv SystemDrive "C:"
|
||||
FcgidInitialEnv TEMP "C:/Windows/Temp"
|
||||
FcgidInitialEnv TMP "C:/Windows/Temp"
|
||||
FcgidInitialEnv windir "C:/Windows"
|
||||
|
||||
# 10 hrs: in case you have long running scripts, increase FcgidIOTimeout
|
||||
FcgidIOTimeout 36000
|
||||
FcgidConnectTimeout 16
|
||||
FcgidMaxRequestsPerProcess 1000
|
||||
FcgidMaxProcesses 50
|
||||
FcgidMaxRequestLen 81310720
|
||||
# Location php.ini:
|
||||
FcgidInitialEnv PHPRC "C:/laragon/bin/php/php-5.4.9-nts-Win32-VC9-x86"
|
||||
FcgidInitialEnv PHP_FCGI_MAX_REQUESTS 1000
|
||||
|
||||
<Files ~ "\.php$>"
|
||||
AddHandler fcgid-script .php
|
||||
Options +ExecCGI
|
||||
FcgidWrapper "C:/laragon/bin/php/php-5.4.9-nts-Win32-VC9-x86/php-cgi.exe" .php
|
||||
</Files>
|
||||
</IfModule>
|
||||
17
etc/apache2/httpd-ssl.conf
Normal file
17
etc/apache2/httpd-ssl.conf
Normal file
@@ -0,0 +1,17 @@
|
||||
Listen 443
|
||||
|
||||
|
||||
SSLCipherSuite HIGH:MEDIUM:!MD5:!RC4
|
||||
SSLProxyCipherSuite HIGH:MEDIUM:!MD5:!RC4
|
||||
|
||||
|
||||
SSLHonorCipherOrder on
|
||||
|
||||
SSLProtocol all -SSLv3
|
||||
SSLProxyProtocol all -SSLv3
|
||||
|
||||
|
||||
SSLSessionCache "shmcb:logs/ssl_scache(512000)"
|
||||
SSLSessionCacheTimeout 300
|
||||
|
||||
|
||||
1
etc/apache2/mod_php.conf
Normal file
1
etc/apache2/mod_php.conf
Normal file
@@ -0,0 +1 @@
|
||||
# This file is auto-generated, so please keep it intact.
|
||||
BIN
etc/apache2/modules/mod_fcgid-2.3.9-win32-VC11.so
Normal file
BIN
etc/apache2/modules/mod_fcgid-2.3.9-win32-VC11.so
Normal file
Binary file not shown.
BIN
etc/apache2/modules/mod_fcgid-2.3.9-win32-VC14.so
Normal file
BIN
etc/apache2/modules/mod_fcgid-2.3.9-win32-VC14.so
Normal file
Binary file not shown.
BIN
etc/apache2/modules/mod_fcgid-2.3.9-win64-VC11.so
Normal file
BIN
etc/apache2/modules/mod_fcgid-2.3.9-win64-VC11.so
Normal file
Binary file not shown.
BIN
etc/apache2/modules/mod_fcgid-2.3.9-win64-VC14.so
Normal file
BIN
etc/apache2/modules/mod_fcgid-2.3.9-win64-VC14.so
Normal file
Binary file not shown.
Reference in New Issue
Block a user