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

Pages: [1]
1
CentOS-WebPanel Bugs / Re: Script Cluebringer Quotas and amavisd error
« on: October 03, 2021, 07:49:05 PM »
Able to fix the second problem.

If you go to the line in the file they specify, my file had a double period instead of a single period in the middle of the string.

2
CentOS-WebPanel Bugs / Re: Script Cluebringer Quotas and amavisd error
« on: October 03, 2021, 07:29:36 PM »
same problem, except it says 24 instead 0

3
DKIM / DKIM, SPF not forwarding
« on: June 30, 2021, 10:39:14 PM »
So I having the following problem.

Godaddy is out registrar.

example.com is hosted on cloudflare by a website hosting company.
A and MX records point to mail.example.com

Problem is that the DKIM/SPF etc are not functioning so some emails are rejected/denied.
How do I add the TXT info onto the subdomain when the main records are on cloudflare?

Do I ask to the hosting company to add the txt records? can i somehow forward the txt records when mail is routed to the mail server?

4
SSL / Re: Help! Cannot get rid of expired SSL certificates.
« on: March 08, 2021, 11:00:03 PM »
Thanks for the helped.

I have tried those options and retried them again.

Still listing that 1 of the 2 certificates from the MX is expired.

Went updating the certificate it updated the 3rd certificate for the CA root store.

5
SSL / Help! Cannot get rid of expired SSL certificates.
« on: February 25, 2021, 01:22:24 AM »
Keep having issue with iOS devices stating that my certificate is expired.

server: mail.azskin.com on Centos 8

If you use the SSL checkers used by CWP7 everything is listed as fine.

https://www.checktls.com/TestReceiver

if you put in my server it states that 1 out of 3 of the certificates is expired. Unsure how to remove that certificate.

6
Nginx / Serving static content from folder
« on: December 04, 2020, 08:56:27 AM »
Trying to serve Django/postgresql/redis with nginx/gunicorn.

Everything is working correctly except the Nginx conf file for the site. trying to serve static files from a specific folder and it is not being recognized. Any suggestions? I feel like I am missing something obvious and I just need a fresh pair of eyes. Thanks for any help!

server {
   listen ipaddress;   
   server_name myservername;
       location /static/ {
            location ~* \.(css|gif|ico|jpe?g|js[on]?p?|mpe?g|mp3|mp4|wav|woff|eot|svg|txt)$ {
                root /home/myuser/static;
                access_log                off;
                add_header                Cache-Control   "public, must-revalidate, proxy-revalidate";
                add_header                Pragma          "public";
                expires                   365d;
                log_not_found             off;
                tcp_nodelay               off;
                open_file_cache           max=16 inactive=600s; # 10 minutes
                open_file_cache_errors    on;
                open_file_cache_min_uses  2;
                open_file_cache_valid     300s; # 5 minutes
            }
        }

        location / {
            include proxy.inc;
            add_header                X-Proxy-Cache $upstream_cache_status;
            proxy_pass                http://unix:/run/gunicorn.sock;
        }
}

7
CSF Firewall / Too many emails!!!
« on: November 21, 2020, 07:57:18 PM »
lfd on mail.azskin.com: blocked 161.35.26.90 (DE/Germany/-)

Time:     Sat Nov 21 10:32:48 2020 -0700
IP:       161.35.26.90 (DE/Germany/-)
Failures: 5 (sshd)
Interval: 3600 seconds
Blocked:  Permanent Block [LF_SSHD]

I am getting hundreds of these emails daily.

How do I suppress this.

I have turned off all email alerts in the csf.conf by setting them to zero and I still keep getting them.

Pages: [1]