How to backup SQL Server databases to a mapped drive using Username and Password

First of all we need to enable xp_cmdshell option on our SQL server. This option enables system administrators to control whether the xp_cmdshell extended stored procedure can be executed on a system. By default, the xp_cmdshell option is disabled on Continue reading How to backup SQL Server databases to a mapped drive using Username and Password

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