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.


Topics - jayhalleaux

Pages: [1]
1
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?

2
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.

3
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;
        }
}

4
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]