Posts

Showing posts from September, 2019

Sendy Nginx Configuration

Hi , I have seen many people struggling of nginx configuration of the sendy application.  As the sendy application is not tested on the nginx and its rewrite rules, I have written the configuration and tested it.   I will add the configuration below here server {         listen 80 default_server;         listen [::]:80 default_server;         root /var/www/html; # Add index.php to the list if you are using PHP         index index.php index.html index.htm index.nginx-debian.html;         server_name (domain_name);    location / {                 # First attempt to serve request as file, then                 # as directory, then fall back to displaying a 404.                 #try_files $uri $uri/ =404;     ...

Swap Memory On Amazon AWS(Linux Servers)

Hi ,  Although this is my first blog , Please excuse me , if I am wrong some where . I am experienced Junior Software Developer with a demonstrated history of working in the computer software industry in Mumbai. Skills include analytical thinking ,creative problem solving ,PHP frameworks and Server Engineering. Proficient with database programs including MongoDb and MYSQL Server. I will post commands to create a swap memory in aws .  This Below command will show you the existing swap memory in the server .                      total       used          free           shared      buff/cache   available Mem:           983M     284M        150M        768K        549M        ...