mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-04 01:12:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			416 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			416 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
upstream note {
 | 
						|
    server 127.0.0.1:8000;
 | 
						|
}
 | 
						|
 | 
						|
server {
 | 
						|
    listen 80;
 | 
						|
    server_name note;
 | 
						|
 | 
						|
    location / {
 | 
						|
            proxy_pass http://note;
 | 
						|
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
 | 
						|
            proxy_set_header Host $host;
 | 
						|
            proxy_redirect off;
 | 
						|
    }
 | 
						|
 | 
						|
    location /static {
 | 
						|
        alias /code/static/;
 | 
						|
    }
 | 
						|
 | 
						|
    location /media {
 | 
						|
        alias /code/media/;
 | 
						|
    }
 | 
						|
}
 |