mirror of
				https://github.com/fastogt/fastocloud.git
				synced 2025-03-09 23:18:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			163 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			163 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| set -ex
 | |
| 
 | |
| # update system
 | |
| apt-get update
 | |
| apt-get install -y nginx
 | |
| cp env/nginx/fastocloud /etc/nginx/sites-available/fastocloud
 | |
| systemctl restart nginx
 |