mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
619735fea0
* Refactor docker-compose to its own folder * Added FastAPI development environment * Added support for GPU in docker file * Added image classification * creating endpoint for smart Image info * added logo with white background on ios * Added endpoint and trigger for image tagging * Classify image and save into database * Update readme
36 lines
717 B
Nginx Configuration File
36 lines
717 B
Nginx Configuration File
|
|
map $http_upgrade $connection_upgrade {
|
|
default upgrade;
|
|
'' close;
|
|
}
|
|
|
|
# events {
|
|
# worker_connections 1000;
|
|
# }
|
|
|
|
server {
|
|
|
|
client_max_body_size 50000M;
|
|
|
|
listen 80;
|
|
|
|
location / {
|
|
proxy_buffering off;
|
|
proxy_buffer_size 16k;
|
|
proxy_busy_buffers_size 24k;
|
|
proxy_buffers 64 4k;
|
|
proxy_force_ranges on;
|
|
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_pass http://immich_server:3000;
|
|
}
|
|
}
|