Skip to content

Latest commit

 

History

History
55 lines (42 loc) · 1.22 KB

File metadata and controls

55 lines (42 loc) · 1.22 KB

Auto Deploy On Nginx with Shell Script

1. Auto Static Files Deployment

It will install and configure all dependencies(nginx, node, etc.). For example, built angular, react, vue, etc. project.

Directory tree for static project

├── run-static.sh
│
├── static-nginx.conf
|
└── dist
      |
      └── <PROJECT_NAME>
              |
              └── PROJECT FILES...

2. Auto Angular Project Deployment

Install all required dependencies (nginx, node, npm, @angular/cli, etc.), build project, and then deploy.

IMPORTANT NOTE: The script will run npm run build. so change the scripts -> build in package.json

Example:

  "scripts": {
    ...
    "build": "ng build --prod --base-href /example",
    ...
  }

Directory tree for Angular project

├── <PROJECT_FOLDER>
│       │
│       ├── run-angular.sh
│       │
│       ├── angular-nginx.conf
│       │
│       └── PROJECT FILES...
│

3. Auto SSL Certificate

It will install and configure all! Use Let's encrypt and Certbot in background. redirecting from HTTP to HTTPS will configure if you want.