mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			695 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			695 B
		
	
	
	
		
			Nginx Configuration File
		
	
	
	
	
	
| server {
 | |
|     listen [::]:443 ssl ipv6only=off;
 | |
| 
 | |
|     # CHANGE THIS TO YOUR SERVER'S NAME
 | |
|     server_name netbox.example.com;
 | |
| 
 | |
|     ssl_certificate /etc/ssl/certs/netbox.crt;
 | |
|     ssl_certificate_key /etc/ssl/private/netbox.key;
 | |
| 
 | |
|     client_max_body_size 25m;
 | |
| 
 | |
|     location /static/ {
 | |
|         alias /opt/netbox/netbox/static/;
 | |
|     }
 | |
| 
 | |
|     location / {
 | |
|         proxy_pass http://127.0.0.1:8001;
 | |
|         proxy_set_header X-Forwarded-Host $http_host;
 | |
|         proxy_set_header X-Real-IP $remote_addr;
 | |
|         proxy_set_header X-Forwarded-Proto $scheme;
 | |
|     }
 | |
| }
 | |
| 
 | |
| server {
 | |
|     # Redirect HTTP traffic to HTTPS
 | |
|     listen [::]:80 ipv6only=off;
 | |
|     server_name _;
 | |
|     return 301 https://$host$request_uri;
 | |
| }
 |