- Update configuration for production HTTPS domain (devden.hiddenden.cafe) - Add nginx reverse proxy for /api and /auth routes to backend - Create auth-callback.html to handle Microsoft Entra ID OAuth redirect - Fix API_URL in script.js to use same origin (remove :8000 port) - Add cache-busting query parameter (?v=2) to script.js - Update .env.example with HTTPS requirements documentation This resolves Azure Entra ID redirect URI mismatch and enables proper OAuth authentication flow through the nginx frontend proxy. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
18 lines
416 B
Docker
18 lines
416 B
Docker
# Use nginx alpine for minimal size
|
|
FROM nginx:alpine
|
|
|
|
# Copy custom nginx config
|
|
COPY default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# Copy static files to nginx html directory
|
|
COPY index.html /usr/share/nginx/html/
|
|
COPY auth-callback.html /usr/share/nginx/html/
|
|
COPY style.css /usr/share/nginx/html/
|
|
COPY script.js /usr/share/nginx/html/
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# Start nginx
|
|
CMD ["nginx", "-g", "daemon off;"]
|