fix laragon default directory path

This commit is contained in:
Kei
2019-09-02 03:11:53 +07:00
parent 0b5b470631
commit c03b3dec35
14 changed files with 32 additions and 32 deletions

View File

@@ -1,7 +1,7 @@
LoadModule fcgid_module "D:/Ishler/Open Source/laragon/laragon/etc/apache2/modules/mod_fcgid-2.3.9-Win64-VC15.so"
LoadModule fcgid_module "C:/laragon/etc/apache2/modules/mod_fcgid-2.3.9-Win64-VC15.so"
<IfModule fcgid_module>
FcgidInitialEnv PATH "D:/Ishler/Open Source/laragon/laragon/bin/php/php-5.4.9-nts-Win32-VC9-x86;C:/Windows/system32;C:/Windows;C:/Windows/System32/Wbem;"
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"
@@ -15,12 +15,12 @@ FcgidMaxRequestsPerProcess 0
FcgidMaxProcesses 50
FcgidMaxRequestLen 81310720
# Location php.ini:
FcgidInitialEnv PHPRC "D:/Ishler/Open Source/laragon/laragon/bin/php/php-5.4.9-nts-Win32-VC9-x86"
FcgidInitialEnv PHPRC "C:/laragon/bin/php/php-5.4.9-nts-Win32-VC9-x86"
FcgidInitialEnv PHP_FCGI_MAX_REQUESTS 0
<Files ~ "\.php$>"
AddHandler fcgid-script .php
Options +ExecCGI
FcgidWrapper "D:/Ishler/Open Source/laragon/laragon/bin/php/php-5.4.9-nts-Win32-VC9-x86/php-cgi.exe" .php
FcgidWrapper "C:/laragon/bin/php/php-5.4.9-nts-Win32-VC9-x86/php-cgi.exe" .php
</Files>
</IfModule>