Docker container, Cross-Origin Request Blocked, can’t connect nginx website server to fast api

for a couple of days I’m trying to resolve Cross-Origin Request Blocked problem within my docker container.

this is my Fastapi code:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>import os
from contextlib import asynccontextmanager
from fastapi import FastAPI
from starlette.middleware.cors import CORSMiddleware
from api.background.DataUpdate.dbDataUpdater15m import dbDataUpdate
from api.background.DataUpdate.liveData5s import dataLive
from api.background.dataSched import PeriodicTask
from api.routes.calendarDataRoute import calendar
from api.routes.liveData import live
from api.routes.plotDataRoute import PlotData
from network.pcIP.IP import get_ip_address
from src.dbManage.dbCreateTables import createDBtables
task1 = PeriodicTask(5, dataLive)
task2 = PeriodicTask(900, dbDataUpdate)
#ip = str(get_ip_address())
ip = str("frontend")
#ip = os.getenv("FRONTEND_HOST", "localhost")
@asynccontextmanager
async def lifespan(app: FastAPI):
# Load the ML model
createDBtables()
task1.start()
task2.start()
yield
# Clean up the ML models and release the resources
task1.stop()
task2.stop()
app = FastAPI(lifespan=lifespan)
origins = [
"http://localhost",
"http://localhost:8000",
"http://localhost:3240",
"http://localhost:63342",
"http://192.168.95.102:63342",
"http://192.168.95.102:8000",
"http://192.168.65.1",
"http://192.168.65.1:36886",
"http://127.0.0.1:8080",
"http://127.0.0.1:8000",
f"http://{ip}:3240",
f"http://{ip}:8080",
f"http://{ip}:8000",
f"http://{ip}",
f"http://backend:8000",
f"http://backend:8080",
f"http://backend:3240",
f"http://backend:80",
]
#origins = ["*"] # Allow all CORS requests
print(ip)
app.add_middleware(
CORSMiddleware,
allow_origins=origins,
allow_credentials=True,
allow_methods=["GET", "POST"],
allow_headers=["*"],
)
app.include_router(PlotData)
app.include_router(calendar)
app.include_router(live)
if __name__ == '__main__':
import uvicorn
uvicorn.run(app, host="backend", port=8000)
</code>
<code>import os from contextlib import asynccontextmanager from fastapi import FastAPI from starlette.middleware.cors import CORSMiddleware from api.background.DataUpdate.dbDataUpdater15m import dbDataUpdate from api.background.DataUpdate.liveData5s import dataLive from api.background.dataSched import PeriodicTask from api.routes.calendarDataRoute import calendar from api.routes.liveData import live from api.routes.plotDataRoute import PlotData from network.pcIP.IP import get_ip_address from src.dbManage.dbCreateTables import createDBtables task1 = PeriodicTask(5, dataLive) task2 = PeriodicTask(900, dbDataUpdate) #ip = str(get_ip_address()) ip = str("frontend") #ip = os.getenv("FRONTEND_HOST", "localhost") @asynccontextmanager async def lifespan(app: FastAPI): # Load the ML model createDBtables() task1.start() task2.start() yield # Clean up the ML models and release the resources task1.stop() task2.stop() app = FastAPI(lifespan=lifespan) origins = [ "http://localhost", "http://localhost:8000", "http://localhost:3240", "http://localhost:63342", "http://192.168.95.102:63342", "http://192.168.95.102:8000", "http://192.168.65.1", "http://192.168.65.1:36886", "http://127.0.0.1:8080", "http://127.0.0.1:8000", f"http://{ip}:3240", f"http://{ip}:8080", f"http://{ip}:8000", f"http://{ip}", f"http://backend:8000", f"http://backend:8080", f"http://backend:3240", f"http://backend:80", ] #origins = ["*"] # Allow all CORS requests print(ip) app.add_middleware( CORSMiddleware, allow_origins=origins, allow_credentials=True, allow_methods=["GET", "POST"], allow_headers=["*"], ) app.include_router(PlotData) app.include_router(calendar) app.include_router(live) if __name__ == '__main__': import uvicorn uvicorn.run(app, host="backend", port=8000) </code>
import os
from contextlib import asynccontextmanager

from fastapi import FastAPI
from starlette.middleware.cors import CORSMiddleware

from api.background.DataUpdate.dbDataUpdater15m import dbDataUpdate
from api.background.DataUpdate.liveData5s import dataLive
from api.background.dataSched import PeriodicTask
from api.routes.calendarDataRoute import calendar
from api.routes.liveData import live
from api.routes.plotDataRoute import PlotData
from network.pcIP.IP import get_ip_address
from src.dbManage.dbCreateTables import createDBtables

task1 = PeriodicTask(5, dataLive)
task2 = PeriodicTask(900, dbDataUpdate)

#ip = str(get_ip_address())

ip = str("frontend")
#ip = os.getenv("FRONTEND_HOST", "localhost")

@asynccontextmanager
async def lifespan(app: FastAPI):
    # Load the ML model
    createDBtables()
    task1.start()
    task2.start()
    yield
    # Clean up the ML models and release the resources
    task1.stop()
    task2.stop()


app = FastAPI(lifespan=lifespan)

origins = [
    "http://localhost",
    "http://localhost:8000",
    "http://localhost:3240",
    "http://localhost:63342",
    "http://192.168.95.102:63342",
    "http://192.168.95.102:8000",
    "http://192.168.65.1",
    "http://192.168.65.1:36886",
    "http://127.0.0.1:8080",
    "http://127.0.0.1:8000",
    f"http://{ip}:3240",
    f"http://{ip}:8080",
    f"http://{ip}:8000",
    f"http://{ip}",
    f"http://backend:8000",
    f"http://backend:8080",
    f"http://backend:3240",
    f"http://backend:80",
]


#origins = ["*"]  # Allow all CORS requests
print(ip)
app.add_middleware(
    CORSMiddleware,
    allow_origins=origins,
    allow_credentials=True,
    allow_methods=["GET", "POST"],
    allow_headers=["*"],
)

app.include_router(PlotData)
app.include_router(calendar)
app.include_router(live)

if __name__ == '__main__':
    import uvicorn

    uvicorn.run(app, host="backend", port=8000)

this is my javaScript script:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>const bURL = "backend";
export const links = {
linePlot: `http://${bURL}:8000/`,
calendar: `http://${bURL}:8000/calendar`,
linePlotButton: `http://${bURL}:8000/button`,
};
const dayControlScript = document.getElementById('dayControlScript');
dayControlScript.src = '../src/scripts/linePlot/controls/DayControl.js';
// Load dateControl.js
const dateControlScript = document.getElementById('dateControlScript');
dateControlScript.src = '../src/scripts/calendar/controls/dateControl.js';
</code>
<code>const bURL = "backend"; export const links = { linePlot: `http://${bURL}:8000/`, calendar: `http://${bURL}:8000/calendar`, linePlotButton: `http://${bURL}:8000/button`, }; const dayControlScript = document.getElementById('dayControlScript'); dayControlScript.src = '../src/scripts/linePlot/controls/DayControl.js'; // Load dateControl.js const dateControlScript = document.getElementById('dateControlScript'); dateControlScript.src = '../src/scripts/calendar/controls/dateControl.js'; </code>
const bURL = "backend";

export const links = {
  linePlot: `http://${bURL}:8000/`,
  calendar: `http://${bURL}:8000/calendar`,
  linePlotButton: `http://${bURL}:8000/button`,
};

const dayControlScript = document.getElementById('dayControlScript');
dayControlScript.src = '../src/scripts/linePlot/controls/DayControl.js';

// Load dateControl.js
const dateControlScript = document.getElementById('dateControlScript');
dateControlScript.src = '../src/scripts/calendar/controls/dateControl.js';

I know that it’s a bit weird, but i was debugging code, and i just didn’t place all other commented code.

this is my docker yaml:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>version: '3.8'
services:
backend:
build: ./backend
container_name: backend
env_file: .env
ports:
- "8000:8000"
depends_on:
- db
networks:
- campione-network
volumes:
- ./backend:/campionePlot
frontend:
build: ./frontend
container_name: frontend
ports:
- "3240:80"
networks:
- campione-network
environment:
BACKEND_URL: "http://backend:8000"
volumes:
- ./frontend:/usr/share/nginx/html
db:
image: postgres:latest
container_name: db
env_file: .env
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
- campione-network
volumes:
postgres_data:
networks:
campione-network:
driver: bridge
</code>
<code>version: '3.8' services: backend: build: ./backend container_name: backend env_file: .env ports: - "8000:8000" depends_on: - db networks: - campione-network volumes: - ./backend:/campionePlot frontend: build: ./frontend container_name: frontend ports: - "3240:80" networks: - campione-network environment: BACKEND_URL: "http://backend:8000" volumes: - ./frontend:/usr/share/nginx/html db: image: postgres:latest container_name: db env_file: .env volumes: - postgres_data:/var/lib/postgresql/data networks: - campione-network volumes: postgres_data: networks: campione-network: driver: bridge </code>
version: '3.8'

services:
  backend:
    build: ./backend
    container_name: backend
    env_file: .env
    ports:
      - "8000:8000"
    depends_on:
      - db
    networks:
      - campione-network
    volumes:
      - ./backend:/campionePlot

  frontend:
    build: ./frontend
    container_name: frontend
    ports:
      - "3240:80"
    networks:
      - campione-network
    environment:
      BACKEND_URL: "http://backend:8000"
    volumes:
      - ./frontend:/usr/share/nginx/html

  db:
    image: postgres:latest
    container_name: db
    env_file: .env
    volumes:
      - postgres_data:/var/lib/postgresql/data
    networks:
      - campione-network

volumes:
  postgres_data:

networks:
  campione-network:
    driver: bridge

and this is my nginx conf (main part):

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>server {
listen 3240;
server_name frontend;
root /usr/share/nginx/html;
index Public/index.html;
# Default location for serving index.html
location = / {
try_files /Public/index.html =404;
add_header Cache-Control "public, max-age=31536000";
}
# Location for serving 404 page and its assets
location ^~ /404/ {
root /usr/share/nginx/html/Public/;
# Serve 404.html
location = /404/404.html {
try_files $uri =404;
add_header Cache-Control "public, max-age=31536000";
}
# Serve assets under /404/assets/
location ^~ /404/assets/ {
try_files $uri =404;
add_header Cache-Control "public, max-age=31536000";
}
}
# Location for serving assets under /assets/css/
location ^~ /assets/ {
root /usr/share/nginx/html/Public/;
try_files $uri =404;
add_header Cache-Control "public, max-age=31536000";
}
# Location for serving assets under /src/
location ^~ /src/ {
root /usr/share/nginx/html;
try_files $uri $uri/ =404;
}
}
</code>
<code>server { listen 3240; server_name frontend; root /usr/share/nginx/html; index Public/index.html; # Default location for serving index.html location = / { try_files /Public/index.html =404; add_header Cache-Control "public, max-age=31536000"; } # Location for serving 404 page and its assets location ^~ /404/ { root /usr/share/nginx/html/Public/; # Serve 404.html location = /404/404.html { try_files $uri =404; add_header Cache-Control "public, max-age=31536000"; } # Serve assets under /404/assets/ location ^~ /404/assets/ { try_files $uri =404; add_header Cache-Control "public, max-age=31536000"; } } # Location for serving assets under /assets/css/ location ^~ /assets/ { root /usr/share/nginx/html/Public/; try_files $uri =404; add_header Cache-Control "public, max-age=31536000"; } # Location for serving assets under /src/ location ^~ /src/ { root /usr/share/nginx/html; try_files $uri $uri/ =404; } } </code>
server {
    listen 3240;
    server_name frontend;

    root /usr/share/nginx/html;
    index Public/index.html;

    # Default location for serving index.html
    location = / {
        try_files /Public/index.html =404;
        add_header Cache-Control "public, max-age=31536000";
    }

    # Location for serving 404 page and its assets
    location ^~ /404/ {
        root /usr/share/nginx/html/Public/;

        # Serve 404.html
        location = /404/404.html {
            try_files $uri =404;
            add_header Cache-Control "public, max-age=31536000";
        }

        # Serve assets under /404/assets/
        location ^~ /404/assets/ {
            try_files $uri =404;
            add_header Cache-Control "public, max-age=31536000";
        }
    }

    # Location for serving assets under /assets/css/
    location ^~ /assets/ {
        root /usr/share/nginx/html/Public/;
        try_files $uri =404;
        add_header Cache-Control "public, max-age=31536000";
    }

    # Location for serving assets under /src/
    location ^~ /src/ {
        root /usr/share/nginx/html;
        try_files $uri $uri/ =404;
    }
}

inside a docker file for nginx i also added this

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>EXPOSE 80
</code>
<code>EXPOSE 80 </code>
EXPOSE 80

I literally, i think tried everything.

What i tried.

The only time it worked when i just placed everything to 0.0.0.0 (instead of backend and frontend names)

I tried to run this commands

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>docker exec frontend curl http://backend:8000
docker exec backend curl http://backend:8000
docker exec frontend curl http://fronend
docker exec backend curl http://fronend
``` they worked
i tried to disable cors in fastapi (allowing everything) by doing this ->
</code>
<code>docker exec frontend curl http://backend:8000 docker exec backend curl http://backend:8000 docker exec frontend curl http://fronend docker exec backend curl http://fronend ``` they worked i tried to disable cors in fastapi (allowing everything) by doing this -> </code>
docker exec frontend curl http://backend:8000
docker exec backend curl http://backend:8000

docker exec frontend curl http://fronend
docker exec backend curl http://fronend

``` they worked

i tried to disable cors in fastapi (allowing everything) by doing this -> 

origins = [*]

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>nothing
I tried to run it with and without hostname in nginx.conf
On my pc everything works. Even when i place my wifi ip internal address (to have the connection from phone too) i don't have any problems with Cors.
I don't know what should i do. I don't want to turn it off from browser, because i want to go online with the site, and turn this control off in each browser like don't work at all. Any suggestions? Thank you for every help!
</code>
<code>nothing I tried to run it with and without hostname in nginx.conf On my pc everything works. Even when i place my wifi ip internal address (to have the connection from phone too) i don't have any problems with Cors. I don't know what should i do. I don't want to turn it off from browser, because i want to go online with the site, and turn this control off in each browser like don't work at all. Any suggestions? Thank you for every help! </code>
nothing

I tried to run it with and without hostname in nginx.conf 

On my pc everything works. Even when i place my wifi ip internal address (to have the connection from phone too) i don't have any problems with Cors.

I don't know what should i do. I don't want to turn it off from browser, because i want to go online with the site, and turn this control off in each browser like don't work at all. Any suggestions? Thank you for every help!

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật