Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - mirdul611

Pages: 1 [2]
16
PHP / Re: PHP Memcache Error
« on: May 08, 2020, 11:31:25 PM »
Yes, I experienced exact same error when I installed memcached last week through CWP. Looks like a bug. I'm not using memcached anymore. So please update us if you get this fixed.

17
CentOS 6 Problems / Re: Nginx force download and custom error pages
« on: May 03, 2020, 06:24:40 PM »
Force download is working perfectly now :) Thank you very much!
Can you please suggest something to get the custom error page working? I have already set proxy_intercept_errors on; to nginx.conf and set custom 404 error page on vhost file which used to work on older nginx versions.

18
CentOS 6 Problems / Re: Nginx force download and custom error pages
« on: May 03, 2020, 10:57:56 AM »
Hi,

Thanks for the reply.

Please find the nginx.conf as follows

Code: [Select]
user nobody;
worker_processes auto;
#worker_rlimit_nofile    65535;
error_log               /var/log/nginx/error.log crit;
pid                     /var/run/nginx.pid;

events {
worker_connections  1024;
use                 epoll;
multi_accept        on;

}
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
client_header_timeout 3m;
client_body_timeout 3m;
client_max_body_size 256m;
client_header_buffer_size 4k;
client_body_buffer_size 256k;
large_client_header_buffers 4 32k;
send_timeout 3m;
keepalive_timeout 60 60;
reset_timedout_connection       on;
server_names_hash_max_size 1024;
server_names_hash_bucket_size 1024;
ignore_invalid_headers on;
connection_pool_size 256;
request_pool_size 4k;
output_buffers 4 32k;
postpone_output 1460;

include mime.types;
default_type application/octet-stream;

# Compression gzip
gzip on;
gzip_vary on;
gzip_disable "MSIE [1-6]\.";
gzip_proxied any;
gzip_min_length 512;
gzip_comp_level 6;
gzip_buffers 8 64k;
gzip_types text/plain text/xml text/css text/js application/x-javascript application/xml image/png image/x-icon image/gif image/jpeg image/svg+xml application/xml+rss text/javascript application/atom+xml application/javascript application/json application/x-font-ttf font/opentype;

# Proxy settings
proxy_redirect      off;
proxy_set_header    Host            $host;
proxy_set_header    X-Real-IP       $remote_addr;
proxy_set_header    X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass_header   Set-Cookie;
proxy_connect_timeout   300;
proxy_send_timeout  300;
proxy_read_timeout  300;
proxy_buffers       32 4k;
proxy_cache_path /var/cache/nginx levels=2 keys_zone=cache:10m inactive=60m max_size=512m;
proxy_cache_key "$host$request_uri $cookie_user";
proxy_temp_path  /var/cache/nginx/temp;
proxy_ignore_headers Expires Cache-Control;
proxy_cache_use_stale error timeout invalid_header http_502;
proxy_cache_valid any 1d;
proxy_intercept_errors on;

open_file_cache_valid 120s;
open_file_cache_min_uses 2;
open_file_cache_errors off;
open_file_cache max=5000 inactive=30s;
open_log_file_cache max=1024 inactive=30s min_uses=2;

# SSL Settings
ssl_session_cache   shared:SSL:10m;
ssl_protocols       TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers        "EECDH+ECDSA+AESGCM:EECDH+aRSA+AESGCM:EECDH+ECDSA+SHA384:EECDH+ECDSA+SHA256:EECDH+aRSA+SHA384:EECDH+aRSA+SHA256:EECDH+aRSA!RC4:EECDH:!RC4:!aNULL:!eNULL:!LOW:!3DES:!MD5:!EXP:!PSK:!SRP:!DSS";

# Logs
log_format  main    '$remote_addr - $remote_user [$time_local] $request '
                '"$status" $body_bytes_sent "$http_referer" '
                '"$http_user_agent" "$http_x_forwarded_for"';
log_format  bytes   '$body_bytes_sent';
#access_log          /var/log/nginx/access.log main;
access_log off;

# Cache bypass
map $http_cookie $no_cache {
default 0;
~SESS 1;
~wordpress_logged_in 1;
}

# Include additional configuration
include /etc/nginx/cloudflare.inc;
include /etc/nginx/conf.d/*.conf;
}

And here's vhost configuration file -

Code: [Select]
server {
listen 111.222.333.44:80;
server_name subdomain.domain.com  www.subdomain.domain.com;

access_log /usr/local/apache/domlogs/subdomain.domain.com.bytes bytes;
access_log /usr/local/apache/domlogs/subdomain.domain.com.log combined;
error_log /usr/local/apache/domlogs/subdomain.domain.com.error.log error;

location / {
location ~.*\.(3gp|gif|jpg|jpeg|png|ico|wmv|avi|asf|asx|mpg|mpeg|mp4|pls|mp3|mid|wav|swf|flv|html|htm|txt|js|css|exe|zip|tar|rar|gz|tgz|bz2|uha|7z|doc|docx|xls|xlsx|pdf|iso|woff|ttf|svg|eot|sh)$ {
root /home/path/to/the/documnet/root;
expires max;
try_files $uri @backend;
}

error_page 404 403 /404.shtml;
        location = /404.shtml {
        root /home/path/to/the/documnet/root;
                internal;
        }


error_page 405 = @backend;
error_page 500 = @custom;
add_header X-Cache "HIT from Backend";
proxy_pass http://111.222.333.444:8181;
include proxy.inc;
}

location ~* (.*\.mp3) {
types { application/octet-stream .mp3; }
default_type application/octet-stream;
}


location @backend {
internal;
proxy_pass http://111.222.333.444:8181;
include proxy.inc;
}

location @custom {
internal;
proxy_pass http://111.222.333.444:8181;
include proxy.inc;
}

location ~ .*\.(php|jsp|cgi|pl|py)?$ {
proxy_pass http://111.222.333.444:8181;
include proxy.inc;
}

location ~ /\.ht    {deny all;}
location ~ /\.svn/  {deny all;}
location ~ /\.git/  {deny all;}
location ~ /\.hg/   {deny all;}
location ~ /\.bzr/  {deny all;}

disable_symlinks if_not_owner from=/home/path/to/the/documnet/root;

location /.well-known/acme-challenge {
default_type "text/plain";
alias /usr/local/apache/autossl_tmp/.well-known/acme-challenge;
}
}


I have added rules for custom 404 error page and force download in the vhost file. The exact same configuration was working fine before getting nginx updated.

19
CentOS 6 Problems / Re: Nginx force download and custom error pages
« on: May 03, 2020, 06:46:15 AM »
Hi,

I'm still looking for a solution to this.

20
Hi,

I followed your instruction, but I'm seeing error related to cron and also 500 error on the admin panel. Any suggestion?


Code: [Select]
[root@s1 ~]# sh /scripts/update_cwp
Cannot load the ionCube PHP Loader - it was built with configuration API320151012,NTS, whereas running engine is API320170718,NTS
No Loader is installed, please try to run this command or contact support: sh /scripts/update_ioncube restart[root@s1 ~]#
[root@s1 ~]# sed -i "s/ioncube_loader_lin_7.0/ioncube_loader_lin_7.2/g" /usr/local/cwp/php71/php.ini
[root@s1 ~]# sh /scripts/restart_cwpsrv
Stopping cwpsrv:                                           [  OK  ]
Starting cwpsrv: cwpsrv: [warn] he "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /usr/local/cwpsrv/conf.d/api.conf:8
                                                           [  OK  ]
Stopping cwpsrv-phpfpm:                                    [  OK  ]
Starting cwpsrv-phpfpm:                                    [  OK  ]
Stopping cwp-phpfpm:                                       [  OK  ]
Starting cwp-phpfpm:                                       [  OK  ]
[root@s1 ~]#
[root@s1 ~]# sh /scripts/update_cwp
PHP Fatal error:  The file /usr/local/cwpsrv/htdocs/resources/admin/include/cron.php was encoded by the ionCube Encoder for PHP 5.6 and cannot run under PHP 7.1 or later.
 Please ask the provider of the script to provide a version encoded with the ionCube Encoder for PHP 7.1. in Unknown on line 0
[root@s1 ~]#

21
CentOS 6 Problems / Re: Nginx force download and custom error pages
« on: September 27, 2019, 04:48:19 PM »
Anyone?

22
CentOS 6 Problems / Nginx force download and custom error pages
« on: September 23, 2019, 07:26:19 PM »
Hello,

I have a couple of VPS with CWP installed and all of them are configured to use Nginx & Apache as WebServer. I recently had to rebuild the WebServer of one VPS as CWP was forcing me to do but since then Nginx force download for specific extensions aren't working as well as custom error pages. I have checked the Nginx version of the server where these two are not working and its' nginx/1.16.1. But they are working fine on CWP installation with nginx/1.14.0. I used the following configuration on nginx vhosts -


Quote
location ~* (.*\.mp4) {
types { application/octet-stream .mp4; }
default_type application/octet-stream;
}


error_page 404 403 /404.shtml;
        location = /404.shtml {
        root /path/to/directory;
                internal;
        }


Above configuration is working fine on nginx/1.14.0 but doesn't seem to be working on nginx/1.16.1.

Quote
[root@server1 ~]# nginx -v
nginx version: nginx/1.16.1
[root@server1 ~]# grep version /usr/local/cwpsrv/htdocs/resources/admin/include/version.php| awk '{print $NF}'| tr -d '"|;'
0.9.8.697
[root@server1 ~]#

Can anyone please assist me to configure Nginx force download and custom error pages on nginx/1.16.1 ?

23
CentOS-WebPanel GUI / Re: user panel seem fucked up
« on: August 23, 2019, 04:59:51 AM »
Has this started working for people yet.
I haven't been able to login to the user panel in 2 days.
Very frustrated.

You can confirm if this user owns the protected directory?

You can solve this problem using this command
Code: [Select]

chattr -R -i /home/*/

This solution doesn't work for me. Anyone here got it fixed?

24
Apache / Re: Can't increase Apache MaxClients
« on: October 25, 2017, 01:14:16 PM »
Anyone?

25
Apache / Can't increase Apache MaxClients
« on: October 21, 2017, 08:59:19 PM »
Hello,

I have been trying to increase Apache MaxClients value from default 256 to higher one and followed these instructions - http://forum.centos-webpanel.com/apache/apache-maxclient-for-prefork-mpm/ but still no luck.

As per suggestion I have edited /usr/local/apache/conf/httpd.conf to include following

Code: [Select]
# Server-pool management (MPM specific)
Include conf/extra/httpd-mpm.conf

Then added mpm_prefork_module to /usr/local/apache/conf/extra/httpd-mpm.conf and restarted Apache but it's still not accepting more than 256 connections. Can anyone please help me out?

Code: [Select]
<IfModule mpm_prefork_module>
    StartServers          5
    MinSpareServers       5
    MaxSpareServers      10
    ServerLimit         5000
    MaxClients          5000
    MaxRequestsPerChild   0
</IfModule>

Pages: 1 [2]