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 - Nazgile

Pages: [1] 2 3
1
CentOS-WebPanel Bugs / Re: WebServers Vhost Template Editor BUG!
« on: September 15, 2020, 10:26:37 AM »
does anybody have the copy/clone bug too? :D

2
SSL / Re: Install SSL on actual CWP link being ip number
« on: September 14, 2020, 06:31:49 PM »
ok mr know-it-all

but i think he will understand if i replace you with u ;)

maybe you can write in my native language and i will improve ur typos ;)

its not my problem if u didnt understand that u sounds like you haha

this is a forum and not a typo board

https://www.mentalfloss.com/article/63598/whats-difference-between-you-and-u just4example.

3
SSL / Re: Install SSL on actual CWP link being ip number
« on: September 14, 2020, 12:15:09 PM »
maybe u need to change hostname in cwp settings to something like srv1.domain.tld ,  make sure a A record points to the ip with srv1.domain.tld or a wildcard * -> ip

wait until dns change complete (perhabs on settings - maybe 24hours) or if ur bind is ur primary dns u can make it faster.

if u change the hostname, automaticly a autossl certificate will be generated

4
CentOS-WebPanel Bugs / WebServers Vhost Template Editor BUG!
« on: September 12, 2020, 01:05:44 AM »
Hey,

i want to report a bug :D

if i clone a template over the WebServers Template Editor

it doesnt clone correct -> i Marked the spot in RED!

the original file is correct.

AND pls, can u add a method without ssh to add a template to PHP-FPM?
if i clone, it just for fastgci i must manually move it to the php-fpm folder via cli:)

server {
   listen %ip%:%nginx_port% ssl http2;
   server_name %domain_idn% %alias_idn%;
   root %docroot%;
   index index.php index.html index.htm;
   access_log /usr/local/apache/domlogs/%domain%.bytes bytes;
   access_log /usr/local/apache/domlogs/%domain%.log combined;
   error_log /usr/local/apache/domlogs/%domain%.error.log error;

   ssl_certificate      %ssl_cert_path%/%domain%.bundle;
   ssl_certificate_key  %ssl_key_path%/%domain%.key;
   ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
   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;
   ssl_prefer_server_ciphers   on;

   ssl_session_cache   shared:SSL:10m;
   ssl_session_timeout 60m;

   location / {

      add_header Strict-Transport-Security "max-age=31536000";
      add_header X-Content-Type-Options nosniff;

      location ~.*\.(%proxy_extensions%)$ {         
         expires max;
      }
      
      location ~ [^/]\.php(/|$) {
         fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
         if (!-f $document_root$fastcgi_script_name) {
            return  404;
         }

         fastcgi_pass    ꣫end_fcgi%;
         fastcgi_index   index.php;
         include         /etc/nginx/fastcgi_params;
      }

   }

   location ~* "/\.(htaccess|htpasswd)$" {deny all;return 404;}

   disable_symlinks if_not_owner from=%docroot%;

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

server {
   listen %ip%:%nginx_port% ssl http2;   
   server_name webmail.%domain_idn%;

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

   ssl_certificate      %ssl_cert_path%/%domain%.bundle;
   ssl_certificate_key  %ssl_key_path%/%domain%.key;
   ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
   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;
   ssl_prefer_server_ciphers   on;

   ssl_session_cache   shared:SSL:10m;
   ssl_session_timeout 60m;

   location / {
      proxy_pass  http://127.0.0.1:2095;
      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=%docroot%;

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

server {
   listen %ip%:%nginx_port% ssl http2;   
   server_name mail.%domain_idn%;

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

   ssl_certificate      %ssl_cert_path%/%domain%.bundle;
   ssl_certificate_key  %ssl_key_path%/%domain%.key;
   ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
   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;
   ssl_prefer_server_ciphers   on;

   ssl_session_cache   shared:SSL:10m;
   ssl_session_timeout 60m;

   location / {
      proxy_pass  http://127.0.0.1:2095;
      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=%docroot%;

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

server {
   listen %ip%:%nginx_port% ssl http2;   
   server_name cpanel.%domain_idn%;

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

   ssl_certificate      %ssl_cert_path%/%domain%.bundle;
   ssl_certificate_key  %ssl_key_path%/%domain%.key;
   ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
   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;
   ssl_prefer_server_ciphers   on;

   ssl_session_cache   shared:SSL:10m;
   ssl_session_timeout 60m;

   location / {
      proxy_pass  https://127.0.0.1:2083;
      include proxy.inc;
   }

   location /pma {
      proxy_pass  https://127.0.0.1:2031;
      include proxy.inc;
   }

   location /roundcube {
      proxy_pass  https://127.0.0.1:2031;
      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=%docroot%;

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

5
CentOS-WebPanel Bugs / Re: cwp updated and crashed emails
« on: September 07, 2020, 09:06:16 PM »
hope we find a solution soon :/

6
CentOS-WebPanel Bugs / Re: cwp updated and crashed emails
« on: September 07, 2020, 08:38:05 PM »
i tested a fresh server in a VM ( centos 8 server -stream) and setted it correctly up - SAME probleme there :/ i cant recive , hanging in "incoming" - send works fine

i used the same ip, hostname rdns , dns all is correct set :)


7
CentOS-WebPanel Bugs / Re: cwp updated and crashed emails
« on: September 07, 2020, 08:35:12 PM »
have exactly the same problem, i can send emails! but didnt recive any emails from external (like yahoo, gmx )
before the last updates, all works..

spif, dkim, helo, hostname all settings are fine.
rebuild the mailserver didnt change anything.

the mailque shows only in "incoming XYZ" but didnt deliver it ..

LOCAL emails seems will deliver normal

8
Information / Re: Plans to support CentOS 8?
« on: August 24, 2020, 06:45:49 AM »
Code: [Select]
if [ -e "/usr/local/cwpsrv/" ]; then
echo
echo "CWP is already installed on your server."
echo "If you want to update it, run this command: sh /scripts/update_cwp"
echo
exit 1
fi

# Check for unsupported Operating systems
arch=$(uname -m)
#centosversion=`rpm -qa \*-release | grep -Ei "oracle|redhat|centos|cloudlinux" | cut -d"-" -f3`
centosversion=`rpm -qa \*-release | grep -Ei "oracle|redhat|centos|cloudlinux" | cut -d"-" -f3|sed 's/\..$//'`

if [[ $arch == "i686" ]]; then
    echo "Unsupported Operating system, please use CentOS 7.x 64bit"
    exit 1
elif [[ $arch == "armv7l" ]]; then
    echo "Unsupported Operating system, please use CentOS 7.x 64bit"
    exit 1
fi

#if [ $centosversion -eq "8" ]; then
#    echo "Unsupported Operating system, please use CentOS 7.x 64bit"
#    exit 1
if [[ $centosversion -eq "6" ]]; then
    echo "Unsupported Operating system, please use CentOS 7.x 64bit"
    exit 1
elif [[ $centosversion -eq "5" ]]; then
    echo "Unsupported Operating system, please use CentOS 7.x 64bit"
    exit 1

it seems, the centos8 code is for centos7?
see a snipped from the update script?

any possibility to upgrade from 7 to 8 with a cwp upgrade script?
dont want to resetup many stuffs :/ teamspeak, apache/nginx/vanish edits and many more...

9
How to / Re: install CWP on ARM raspberry?
« on: August 10, 2020, 07:25:13 AM »
not possible yet (and maybe future)

i wish that too for my raspberry .. :)

10
CentOS 7 Problems / Re: File System Lock
« on: June 07, 2020, 10:20:21 PM »
i have sorted them like that:

dir: /home/user/

domain1.tld
sub1.domain1.tld
sub2.domain1.tld
domain2.tld
sub1.domain2.tld

and the primary domain under public_html


11
CentOS 7 Problems / Re: File System Lock
« on: June 07, 2020, 10:18:54 PM »
i see, if i have my "domains" in the root folder inside the webspace ex: /home/"user"/here instead /home/"user"/public_html/

the filelock didnt work... i can upload any files in this folder, public_html is correct locked.

pls add this functionality to user panel :)

12
Aplications / PRESTASHOP - Api integration?
« on: June 02, 2020, 01:09:28 PM »
Hey Guys,

quick question.
Anybody have a little tutorial for prestashop and api calls to cwp?

ex: order a hosting package -> it will after accept and checkout automaticly create the user + package

i see just whmcs is featured by cwp .. but maybe any free alternative possible?

13
CentOS-WebPanel Bugs / Re: User Panel Show not data (0.9.8.869)
« on: May 28, 2020, 11:12:15 AM »
sh /scripts/cwpsrv_rebuild_user_conf

this fixed the same problem for me :)

14
Updates / Re: CWPpro version: 0.9.8.980 // Userpanel dont work.
« on: May 26, 2020, 01:11:51 PM »
fixed it with 

sh /scripts/cwpsrv_rebuild_user_conf

:)

ty for reply

15
access to the websites do increase the gb counter as well.

if u permanent refresh ur website, or other persons watch it, the server will send the website datas to them.

(sry for my bad english, not my native language)^^

Pages: [1] 2 3