Forked from cornflourblue/install-meanie-cms-blog-on-ubuntu-1804.sh
Created
April 4, 2019 12:02
-
-
Save ganeshan/4f43f8d65199b0d437f02247afd499df to your computer and use it in GitHub Desktop.
Install MEANie CMS & Blog on Ubuntu 18.04 - http://jasonwatmore.com/post/2018/09/26/setup-nodejs-mongodb-production-server-on-ubuntu-1804
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo " | |
| ---------------------- | |
| MEANIE | |
| ---------------------- | |
| " | |
| # clone meanie project from github into /opt/meanie folder | |
| sudo git clone https://github.com/cornflourblue/meanie /opt/meanie | |
| # install npm packages for meanie | |
| cd /opt/meanie/server && npm install | |
| # start meanie with pm2 | |
| sudo pm2 start server.js | |
| # configure nginx reverse proxy | |
| sudo cat << EOF > /etc/nginx/sites-available/default | |
| server { | |
| listen 80 default_server; | |
| server_name _; | |
| location / { | |
| proxy_pass http://localhost:3000; | |
| } | |
| } | |
| EOF | |
| # restart nginx | |
| sudo systemctl restart nginx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment