0.0.2 • Published 2 years ago

tina-template v0.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Tina Template

My text template cli.

Installation

npm i -g tina-template

Usage

tina [template name] [file path] # command
tina nginx your.conf #example

Nginx

server {
        listen 80;
        
        # ========= edit your your domain here =========
        server_name your.domain.com;
        
        location / {
                proxy_set_header X-Forwarded-Host $host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-Server $host;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                
                # ========= edit your app's host here =========
                proxy_pass http://127.0.0.1:80; 
                
                proxy_http_version 1.1;
                proxy_set_header Upgrade $http_upgrade;
                proxy_set_header Connection "upgrade";
        }
}