Postfix Email antivirus scanning with ClamAV on Linux

Download the antivirus components: yum install clamav-daemon clamav-freshclam clamsmtp Add the following to the end of your “/etc/postfix/main.cf” file: content_filter = scan:[127.0.0.1]:10025 Make your “/etc/clamsmtpd.conf” file look like this: OutAddress: localhost:10026 ClamAddress: /var/run/clamav/clamd.ctl User: clamav Make your “/etc/clamav/clamd.conf” file look Continue reading Postfix Email antivirus scanning with ClamAV on Linux

Integratin Atlassian JIRA with Nginx and SSL

This page describes how to integrate Nginx with JIRA, utilising Nginx as a reverse-proxy over HTTP. Configurin Nginx: # force HTTP to HTTPS – /etc/nginx/conf.d/nonssl.conf server {     listen 80;     server_name jira.itsol.biz;     access_log off;     return 301 https://$server_name$request_uri; Continue reading Integratin Atlassian JIRA with Nginx and SSL