This file contains 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
server { | |
listen 80; | |
server_name dev ipv6only=on; | |
root /usr/share/nginx/html; | |
index index.php index.html index.htm; | |
location ~ \.php$ { |
This file contains 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
server { | |
listen 80 default_server; | |
server_name dev ipv6only=on; | |
root /usr/share/nginx/html; | |
index index.php index.html index.htm; | |
location ~ \.php$ { |
This file contains 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
#!/bin/bash | |
#Author: Kashyap Merai | [email protected] | |
# Variables | |
ch_1="pm2 Production Setup." | |
ch_2="pm2 Production Update." | |
ch_3="pm2 Production." | |
ch_4="pm2 Development Setup." | |
ch_5="pm2 Development." |
NewerOlder