![]() |
|
Centos 9 install script (testing only) - Printable Version +- Sentora Support Forums (https://senforums.mach-hosting.com) +-- Forum: Sentora Public Support Forums v2.x.x (https://senforums.mach-hosting.com/forumdisplay.php?fid=66) +--- Forum: General Support Forum v2.x.x (https://senforums.mach-hosting.com/forumdisplay.php?fid=67) +--- Thread: Centos 9 install script (testing only) (/showthread.php?tid=12865) |
Centos 9 install script (testing only) - justin - 07-12-2022 hi all, I reworked the sentora install script so it will install on Centos 9, in order to do that i had to use some ver 8 rpms. it still has a few issues that I'm going to work out but it installs and functions properly including loading all the plugins. i cant test everything, so i figured i would put it here and let others test it and see what comes of it. I am not a part of the Sentora team and I'm not a full time coder so this script may look hackish, but i can assure you it loads up the beta version of Sentora. I also uploaded all the modules and some themes I could find (some work, some dont) to http://264bit.net/ there are some edits needed to the /etc/sentora/configs/apache/httpd-vhosts.conf to remove the forbidden error -> "Require all granted" like below Code: <Location /server-status>
SetHandler server-status
#Order allow,deny
Require all granted
</Location>
AddType application/x-httpd-php .php
<Directory "/etc/sentora/panel/">
Options +FollowSymLinks
#Order allow,deny
Require all granted
</Directory>another edit will be in the /etc/sentora/configs/apache/httpd.conf -> "Require all granted" like below Code: <Directory /etc/sentora/panel>
Options +FollowSymLinks
DirectoryIndex index.php
<IfModule mod_php5.c>
AddType application/x-httpd-php .php
php_flag magic_quotes_gpc Off
php_flag track_vars On
php_flag register_globals Off
php_admin_value upload_tmp_dir /var/sentora/temp
</IfModule>
Require all granted
</Directory>leave your comments below and criticisms also UPDATE 8/3/22:Fixed compiling issue on zsudo.c and uploaded the file. updated the install scripts to fix a few more issues and also grab the sentora files from 264bit.net for now so i could include zsudo.c that i updated. still working on some of the other things.... thanks Justin |