15 lines
		
	
	
		
			256 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			256 B
		
	
	
	
		
			Django/Jinja
		
	
	
	
	
	
server {
 | 
						|
    listen 80;
 | 
						|
 | 
						|
    root /var/www/html;
 | 
						|
    index index.php;
 | 
						|
 | 
						|
    location / {
 | 
						|
        try_files $uri $uri/ =404;
 | 
						|
    }
 | 
						|
 | 
						|
    location ~ \.php$ {
 | 
						|
        include snippets/fastcgi-php.conf;
 | 
						|
        fastcgi_pass unix:/run/php/php7.4-fpm.sock;
 | 
						|
    }
 | 
						|
} |