
Code Support
Professional Web Development
Category: Nginx


Create, upload and configure SSL cert for NGINX
Generate your SSL CSR to give your SSL provider NOTES: Common name is the DOMAIN NAME then write copy the whole block including the last whitespaces from —-begin certificate request—– key —– end certificate request —– > cert_chain.crt paste that in to your SSL provied including whitespaces. Then when you followed the steps and downloaded …
June 20, 2016
Nginx, Ubuntu/Debian

Install WordPress on a Ubuntu/NGINX web server
Create DB for WP time to create our config file fill in the databasename, user and password that you just created with mysql/mariadb. exit and save. Now go go into your enginx config file and configure it for WordPress: replace with // OPTIONAL STEP if you gonna have SSL on your site you might as …
June 20, 2016
Nginx, Ubuntu/Debian, WordPress

NGINX on ubuntu optimization
check how many worker_processes you got: make a backup: change worker_processes to the number you got earlier. and for the gzip all you have to do is uncomment this line by removing #: uncomment as well. let the other commands be by default. exit and save ctrl x + y //cache// now lets add this …
June 20, 2016
Nginx, Ubuntu/Debian

NGINX configuration for php7 on Ubuntu
Once again lets do a backup of the config file we are about to configure: open the file up to configure: make the following changes Restart the Nginx service for changes to take effect with:
June 20, 2016
Nginx, Ubuntu/Debian


Single page 301 redirect in Nginx
Optimal single 301 redirect: Try to avoid this technique that is used frequently and less optimal: Simply put it in the bottom of the serverblock that’s in use inside your server configuration file. Default: /etc/nginx/sites-enabled/default . To open the file from a terminal:
March 12, 2016
Nginx