forked from github/plane
b6321438ce
* chore: update docker environment variables and compose file for better readability * dev: update single dockerfile * dev: update WEB_URL configuration * dev: move database settings to environment variable * chore: remove port configuration from default compose file * dev: update example env to add EMAIL_FROM and default values for AWS
23 lines
373 B
Nginx Configuration File
23 lines
373 B
Nginx Configuration File
events { }
|
|
|
|
|
|
http {
|
|
sendfile on;
|
|
|
|
server {
|
|
listen 80;
|
|
root /www/data/;
|
|
access_log /var/log/nginx/access.log;
|
|
location / {
|
|
proxy_pass http://planefrontend:3000/;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass http://planebackend:8000/api/;
|
|
}
|
|
|
|
location /uploads/ {
|
|
proxy_pass http://plane-minio:9000/uploads/;
|
|
}
|
|
}
|
|
} |