forked from github/plane
0416e07f46
* merge-commit: self hosted updates * dev: updates in self hosting setup * dev: update script to get the instance IP * dev: update script to generate backend secret key
20 lines
290 B
Nginx Configuration File
20 lines
290 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/;
|
|
}
|
|
|
|
}
|
|
} |