mirror of
				https://github.com/karl0ss/AnotterKiosk.git
				synced 2025-10-30 22:23:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			378 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			378 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| server {
 | |
|         listen 80 default_server;
 | |
|         listen [::]:80 default_server;
 | |
| 
 | |
|         root /var/www/html;
 | |
| 
 | |
|         index index.php;
 | |
| 
 | |
|         server_name _;
 | |
| 
 | |
|         location / {
 | |
|                 try_files $uri $uri/ =404;
 | |
|         }
 | |
| 
 | |
|         location ~ \.php$ {
 | |
|                include snippets/fastcgi-php.conf;
 | |
|                fastcgi_pass unix:/run/php-fpm.sock;
 | |
|         }
 | |
| } | 
