Git Product home page Git Product logo

ubuntu-lemp-server-setup-script's Introduction

Prepare for Ubuntu Server Setup

cd
git clone https://github.com/gistol/ubuntu-lemp-server-setup-script.git server-setup-script
cd server-setup-script
chmod +x install.sh
sudo ./install.sh
  • It will create and configure your server.

  • Just you need to add the vhost conf files as per your requirements. [We include the sample conf files]

  • Just you need to configure your Jenkins configuration.

  • Lastly it also install the mysql secure installation script so you need to configure your DB settings.

Add conf for your Domain

sudo cp ~/server-setup-script/sample_conf /etc/nginx/sites-available/example.com.conf
sudo ln -s /etc/nginx/sites-available/example.com.conf /etc/nginx/sites-enabled/example.com.conf
sudo vim /etc/nginx/sites-available/example.com.conf

Add conf with SSL for your Domain

sudo cp ~/server-setup-script/sample_ssl_conf /etc/nginx/sites-available/example.com.conf
sudo ln -s /etc/nginx/sites-available/example.com.conf /etc/nginx/sites-enabled/example.com.conf
sudo vim /etc/nginx/sites-available/example.com.conf
  • Change example.com.conf as per yours.

  • Find # Modify - .... on conf file and change as per yours.

Restart Nginx server

sudo systemctl restart nginx

Know Nginx status

sudo systemctl status nginx 

MariaDB Configuration

sudo mysql -u root -p
CREATE DATABASE example_db;
CREATE USER 'example_dbuser'@'localhost' IDENTIFIED BY 'yourpassword';
GRANT ALL PRIVILEGES ON example_db.* TO 'example_dbuser'@'localhost' IDENTIFIED BY 'yourpassword' WITH GRANT OPTION;
FLUSH PRIVILEGES;
EXIT;
  • Change example_db, example_dbuser and yourpassword as per yours.

Get First Password for Jenkins and Configure for Project

sudo cat /var/lib/jenkins/secrets/initialAdminPassword

Special thanks to Behestee bhaiya.

ubuntu-lemp-server-setup-script's People

Contributors

fiercebdtiger avatar lucasrolff avatar mirajehossain avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.