This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 20 ,105
» Latest member: Pralekh
» Forum threads: 3 ,757
» Forum posts: 22 ,828

Full Statistics

Online Users
There are currently 203 online users.
» 0 Member(s) | 199 Guest(s)
Applebot, Bing, Google, UptimeRobot

Latest Threads
Sentora Offical Repo is l...
Forum: Sentora Announcements
Last Post: Jerr
Yesterday, 05:52 AM
» Replies: 4
» Views: 2 ,856
Sentora update Informatio...
Forum: Sentora Announcements
Last Post: Jerr
Yesterday, 05:50 AM
» Replies: 1
» Views: 94
Tht
Forum: 3rd Party Module Support v2.x.x
Last Post: TGates
09-25-2023, 01:32 PM
» Replies: 2
» Views: 135
Error Pages Editor v3.0.3
Forum: Active v2.x.x Modules
Last Post: TGates
09-22-2023, 11:35 AM
» Replies: 1
» Views: 82
Sentastico Script Install...
Forum: Active v2.x.x Modules
Last Post: TGates
09-20-2023, 10:35 AM
» Replies: 1
» Views: 113
Sentastico not installing...
Forum: 3rd Party Module Support v2.x.x
Last Post: TGates
09-20-2023, 09:16 AM
» Replies: 4
» Views: 108
Mach-hosting servers back...
Forum: General Support Forum v2.x.x
Last Post: TGates
08-30-2023, 03:18 PM
» Replies: 0
» Views: 355
FPM/FastCGI Php changer
Forum: Active v2.x.x Modules
Last Post: Jettaman
08-28-2023, 05:40 AM
» Replies: 2
» Views: 336
SenAds v1.2.0
Forum: Active v2.x.x Modules
Last Post: TGates
08-26-2023, 12:52 PM
» Replies: 0
» Views: 68
Repo Browser v1.0.2
Forum: Active v2.x.x Modules
Last Post: TGates
08-23-2023, 02:37 PM
» Replies: 0
» Views: 69

 
Varnish & Nginx & Apache & Zpanel & MySQLTuner & ApachebuddyTuner
Posted by: DimitarBG - 12-19-2014, 03:04 AM - Forum: General Discussions (Non-Support Related) - Replies (2)

Quote:Steps:
1: https://www.varnish-cache.org/installation/redhat - just install 1
2: edit from admin cp Apache Config ?module=apache_admin
   make port like 8080
3: wait 5 minutes
4: edit /etc/zpanel/configs/apache/httpd-vhosts.conf if all ports is 8080 cont. if not change him! Big Grin
5: edit /etc/httpd/conf/httpd.conf make Listen 8080
6: u can add some good values on /etc/httpd/conf/httpd.conf




Code:
ServerSignature off
AddDefaultCharset UTF-8
ServerTokens Prod
<IfModule mod_headers.c>
   Header set X-XSS-Protection: "1; mode=block"
</IfModule>
<Directory /var/zpanel/hostdata/*/public_html>
<FilesMatch ".(ttf|otf|eot|woff)$">
 <IfModule mod_headers.c>
   Header set Access-Control-Allow-Origin "*"
 </IfModule>
</FilesMatch>
<IfModule mod_headers.c>
   Header set X-XSS-Protection: "1; mode=block"
</IfModule>
ServerSignature off
AddDefaultCharset UTF-8
<FilesMatch "\.(htaccess|htpasswd|ini|phps|fla|psd|log|sh)$">
Order Allow,Deny
Deny from all
</FilesMatch>
<Files ~ "^.ht">
Order allow,deny
Deny from all
</Files>
RemoveHandler cgi-script .pl .py .cgi
<Files *.pyc>
deny from all
</Files>
<Files *.pyo>
deny from all
</Files>
<Files *.py>
deny from all
</Files>
FileETag None
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE image/svg+xml
AddOutputFilterByType DEFLATE image/x-icon
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
</IfModule>
7: edit /etc/varnish/default.vcl change backend port to 8080
8: edit /etc/sysconfig/varnish change VARNISH_LISTEN_PORT to 80
9: service httpd restart, service varnish restart.
10: if fail back all apache values... for me is working fine Big Grin I use last 4.0 version!

Quote:http://mysqltuner.pl
perl mysqltuner.pl


Quote:http://apachebuddy.pl
perl apachebuddy.pl

Lol i installed and nginx Big Grin
My nginx.conf
Code:
# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/

user              nginx;
worker_processes  1;

error_log  /var/log/nginx/error.log;
#error_log
 /var/log/nginx/error.log  notice;
#error_log
 /var/log/nginx/error.log  info;

pid        /var/run/nginx.pid;


events {
   worker_connections  1024;
}


http {
   include       /etc/nginx/mime.types;
   default_type  application/octet-stream;

   log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                     '$status $body_bytes_sent "$http_referer" '
                     '"$http_user_agent" "$http_x_forwarded_for"';

   access_log  /var/log/nginx/access.log  main;

   sendfile        on;
   
#tcp_nopush
    on;

   
#keepalive_timeout
 0;
   keepalive_timeout  65;

   
#gzip
 on;
   gzip on;
gzip_min_length  1100;
gzip_buffers  4 32k;
gzip_types    text/plain application/x-javascript text/xml text/css;
gzip_vary on;
   # Load config files from the /etc/nginx/conf.d directory
   # The default server is in conf.d/default.conf

server {
       listen  8083 default_server;

       location / {

             
               proxy_set_header Host $host;
               proxy_pass http://127.0.0.1:8080;

        }

        location ~ /\.ht {
               deny all;
       }
}

}
then edit the varnish>default.vcl and set  .port = "8083";

Now my cpu is god Big Grin

Print this item

Fedora Server 21 Support ?
Posted by: elftidus - 12-15-2014, 07:28 AM - Forum: General Discussions (Non-Support Related) - No Replies

just wandering if there could be support with the new streamlined changes with Fedora which now has Fedora Server 21 which all so has a Cockpit Manage and OpenLMI https://getfedora.org

Print this item

Fairwell Sentora
Posted by: ZeroT - 12-08-2014, 09:43 PM - Forum: General Discussions (Non-Support Related) - Replies (12)

I'm sorry to say that I have been forced to move away from zpanel/sentora.

I was a windows ZPanel user and have been waiting patiently for Sentora to be released so that I could start moving everything over. Sadly it has just taken far to long and clients can't wait, I couldn't face setting up new clients on a system that I knew had been ended (zpanel) or unofficially stable (sentora).

Over the weekend I setup a new Plesk server and transferred over 10 domains without any hassle at all, not to mention it supports windows as well which means I can continue to use the antiv, backup tools etc as I have always been doing.

Good luck to Sentora and I will keep checking in to see how its going but I cant help thinking it just needs to be more organised with a proper news feed/time line for users so they know whats going on, telling users to check github to see if anything has changed is simply not good enough. I know its a project run in peoples spare time and we as users all appreciate that fully but the air of unknown is not reassuring for a system that many will end up relying on.

Print this item

Sentora Béta repot dévelopement
Posted by: andykimpe - 12-07-2014, 01:56 AM - Forum: General Discussions (Non-Support Related) - Replies (2)

Hello everyone I work to create a repo for sentora

My reason:

I think the official repo on the package are obsolete

I would like to simplify the installation of sentora and avoided the installation error

the repo and currently in developement is available at the following address http://sentora.mirror-hebergekimpe.fr/

If you wish to help to compile package thank you to contact me at andykimpe(at)gmail.com

the only team member or member with approval of a member of the team will have a aceae write

Print this item

Ruby on Rails
Posted by: gavargas - 12-06-2014, 05:53 AM - Forum: General Discussions (Non-Support Related) - Replies (2)

Hello All, I recently have become a user of Sentora I think its awesome.

I trying to install support for Ruby on Rails on Sentora but I am at a loss.

Has anyone tried and succeeded in getting Rails supported with Sentora?

How would I go about getting Rails support in Sentora.

Print this item

SSL windows management tools
Posted by: Me.B - 12-03-2014, 09:25 PM - Forum: General Discussions (Non-Support Related) - No Replies

http://www.ssltools.com/manager

https://www.digicert.com/util/

Can be usefull.

Print this item

New free SSL initiative
Posted by: Me.B - 12-01-2014, 04:42 AM - Forum: General Discussions (Non-Support Related) - Replies (34)

Beside we can already grab some free SSL from startcom. This initiative is big & could rock the market with mozilla & big names backing it.

https://www.letsencrypt.org/

Source: http://www.theregister.co.uk/2014/11/18/...igi_certs/

Guys we should soon too focus on improving SSL support.

M B

Print this item

Pagekit Installation Failed
Posted by: carl.victor - 11-06-2014, 06:08 PM - Forum: General Discussions (Non-Support Related) - Replies (3)

i tried to install pagekit cms in my sentora-managed vps
the installation always failed
and i found this error from domain error log (/var/zpanel/logs/domains/zadmin/mydomain-error.log

Code:
[Thu Nov 06 14:48:26.459920 2014] [autoindex:error] [pid 3364] [client client-ip] AH01276: Cannot serve directory /var/sentora/hostdata/zadmin/public_html/mydomain_tld/: No matching DirectoryIndex (index.html,index.htm,index.php,index.asp index.aspx,index.jsp,index.jspa,index.shtml,index.shtm) found, and server-generated directory index forbidden by Options directive

anyone can describe why this error happens and how to solve it?

thanks a lot

Print this item

Sentora Windows (Answered)
Posted by: Xiandrios - 11-06-2014, 04:14 AM - Forum: General Discussions (Non-Support Related) - Replies (2)

Hi i'm using ZPanel for windows,

I would like to upgrade to Sentora one day.
Will it be available for windows eventually ?

Print this item

Not everyone here have classic postbit.
Posted by: cyber1995 - 11-04-2014, 01:49 AM - Forum: General Discussions (Non-Support Related) - Replies (3)

Hello.

I notice that when i log out on forum i see everything in classic postbit but when logged in i see everything in horizontal postbit. 


I google it and find this:

http://community.mybb.com/thread-40093.html


So everything that you guys need to do is one simple mysql quary and everyone will have classic postbit.

Code:
UPDATE `mybb_users` SET `classicpostbit` = '1' WHERE `classicpostbit` = '0'

Print this item