Tag Archives: Nginx
How to Install Monica CRM with Nginx on Ubuntu
What is Monica? Monica is a great open source personal relationship management system. – MonicaHQ Prerequisites Git PHP 7.4+ Composer Node.js Yarn MySQL Nginx Install Prerequisite Packages Git sudo apt update sudo apt install -y git PHP 7.4+ sudo apt-get install -y software-properties-common Install PHP 7.4 and required Extensions sudo apt install -y php7.4 php7.4-bcmath…
How to Configure Splunk Behind NGINX Reverse Proxy
Splunk is a very popular option for managing and handling logs. Configuring Splunk with nginx reverse proxy can be a headache sometimes. Considering that splunk has been installed correctly and currently serving the web GUI at http://127.0.0.1:8000 Before getting into nginx configuration, splunk itself needs a little bit of configuring. Find web.conf file at ${SPLUNK_HOME}/etc/system/local/ and open it with a text editor…
How to Configure Jenkins Behind NGINX with SSL
For a production server, I have been trying to get jenkins running behind NGINX a reverse proxy with SSL enabled. What I faced is that there are many configurations available in wiki.jenkins.io but mostly those configurations worked for the authors with different configurations according to their need. I have found a couple of useful instructions but they led me nowhere….
How to Install NGINX in Ubuntu
nginx [engine x] is an HTTP and reverse proxy server, a mail proxy server, and a generic TCP/UDP proxy server. Install NGINX Installing nginx is pretty easy and starlight forward. To install nginx use the following command(s) sudo apt-get update sudo apt-get -y install nginx These should install and start the web-server service. To check the current status of nginx,…