mirror of
				https://github.com/linuxserver/docker-heimdall.git
				synced 2025-11-01 05:27:38 +09:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| ## Version 2018/03/06 - Changelog: https://github.com/linuxserver/docker-heimdall/commits/master/root/defaults/default
 | |
| 
 | |
| server {
 | |
| 	listen 80 default_server;
 | |
| 
 | |
| 	listen 443 ssl;
 | |
| 
 | |
| 	root /var/www/localhost/heimdall/public;
 | |
| 	index index.php index.html index.htm;
 | |
| 
 | |
| 	server_name _;
 | |
| 
 | |
| 	ssl_certificate /config/keys/cert.crt;
 | |
| 	ssl_certificate_key /config/keys/cert.key;
 | |
| 
 | |
| 	client_max_body_size 0;
 | |
| 	
 | |
|         error_page 599 = @noauth;
 | |
| 
 | |
|         location / {
 | |
|                 if (!-f /config/nginx/.htpasswd) {
 | |
|                         return 599;
 | |
|                 }
 | |
|                 auth_basic "Restricted";
 | |
|                 auth_basic_user_file /config/nginx/.htpasswd;
 | |
|                 try_files $uri $uri/ /index.php?$args;
 | |
|         }
 | |
| 
 | |
|         location @noauth {
 | |
|                 try_files $uri $uri/ /index.php?$args;
 | |
|         }
 | |
| 
 | |
| 	location ~ \.php$ {
 | |
| 		fastcgi_split_path_info ^(.+\.php)(/.+)$;
 | |
| 		# With php5-cgi alone:
 | |
| 		fastcgi_pass 127.0.0.1:9000;
 | |
| 		# With php5-fpm:
 | |
| 		#fastcgi_pass unix:/var/run/php5-fpm.sock;
 | |
| 		fastcgi_index index.php;
 | |
| 		include /etc/nginx/fastcgi_params;
 | |
| 
 | |
| 	}
 | |
| }
 |