This commit is contained in:
Narayana 2023-03-08 16:53:41 +05:30
parent b642cc306e
commit 4274951c73
2 changed files with 3 additions and 17 deletions

View File

@ -21,6 +21,7 @@ INSTALLED_APPS = [
"django.contrib.auth", "django.contrib.auth",
"django.contrib.contenttypes", "django.contrib.contenttypes",
"django.contrib.sessions", "django.contrib.sessions",
"corsheaders",
# Inhouse apps # Inhouse apps
"plane.analytics", "plane.analytics",
"plane.api", "plane.api",

View File

@ -3,33 +3,18 @@ events { }
http { http {
sendfile on; sendfile on;
upstream django {
server planebackend:8000;
}
upstream nextjs {
server planefrontend:3000;
}
server { server {
listen 80; listen 80;
root /www/data/; root /www/data/;
access_log /var/log/nginx/access.log; access_log /var/log/nginx/access.log;
location / { location / {
proxy_pass http://planefrontend:3000/; proxy_pass http://planefrontend:3000/;
proxy_set_header Host $host;
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Credentials true;
} }
location /api/ { location /api/ {
proxy_pass http://planebackend:8000/api/; proxy_pass http://planebackend:8000/api/;
proxy_set_header Host $host;
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Credentials true;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
} }
} }
} }