fix: 配置端口代理與 TrustProxies
All checks were successful
Koori-ERP-Deploy-System / deploy-demo (push) Successful in 49s
Koori-ERP-Deploy-System / deploy-production (push) Has been skipped

This commit is contained in:
2026-01-16 08:39:25 +08:00
parent 4b2ccd36b8
commit d28671b60c
3 changed files with 26 additions and 18 deletions

View File

@@ -3,10 +3,14 @@
use Illuminate\Foundation\Application; use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions; use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware; use Illuminate\Foundation\Configuration\Middleware;
use Illuminate\Http\Middleware\TrustProxies;
use Symfony\Component\HttpKernel\Exception\HttpException; use Symfony\Component\HttpKernel\Exception\HttpException;
use Spatie\Permission\Exceptions\UnauthorizedException; use Spatie\Permission\Exceptions\UnauthorizedException;
use Inertia\Inertia; use Inertia\Inertia;
// 信任所有代理(用於反向代理環境)
TrustProxies::at('*');
return Application::configure(basePath: dirname(__DIR__)) return Application::configure(basePath: dirname(__DIR__))
->withRouting( ->withRouting(
web: __DIR__.'/../routes/web.php', web: __DIR__.'/../routes/web.php',

View File

@@ -11,7 +11,7 @@ services:
extra_hosts: extra_hosts:
- 'host.docker.internal:host-gateway' - 'host.docker.internal:host-gateway'
ports: ports:
- '${APP_PORT:-8080}:80' # - '${APP_PORT:-8080}:80' # 由 proxy 處理
- '${VITE_PORT:-5173}:${VITE_PORT:-5173}' - '${VITE_PORT:-5173}:${VITE_PORT:-5173}'
environment: environment:
WWWUSER: '${WWWUSER}' WWWUSER: '${WWWUSER}'
@@ -75,7 +75,8 @@ services:
image: 'nginx:alpine' image: 'nginx:alpine'
container_name: star-erp-proxy container_name: star-erp-proxy
ports: ports:
- '80:80' - '8080:8080'
- '8081:8081'
volumes: volumes:
- './nginx/demo-proxy.conf:/etc/nginx/conf.d/default.conf:ro' - './nginx/demo-proxy.conf:/etc/nginx/conf.d/default.conf:ro'
networks: networks:

View File

@@ -1,26 +1,29 @@
# 總後台 (landlord) - 端口 8080
server { server {
listen 80; listen 8080;
server_name 192.168.0.103; server_name 192.168.0.103;
# koori 租戶
location /koori {
proxy_pass http://star-erp-laravel:80;
proxy_set_header Host koori.star-erp.demo:8080;
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;
# 移除路徑前綴
rewrite ^/koori/(.*) /$1 break;
rewrite ^/koori$ / break;
}
# 總後台(預設)
location / { location / {
proxy_pass http://star-erp-laravel:80; proxy_pass http://star-erp-laravel:80;
proxy_set_header Host star-erp.demo:8080; proxy_set_header Host star-erp.demo;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host:$server_port;
}
}
# koori 租戶 - 端口 8081
server {
listen 8081;
server_name 192.168.0.103;
location / {
proxy_pass http://star-erp-laravel:80;
proxy_set_header Host koori.star-erp.demo;
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 X-Forwarded-Host $host:$server_port;
} }
} }