removed nginx.conf

هذا الالتزام موجود في:
2025-10-29 14:55:36 +03:00
الأصل cee37771de
التزام e58032f141
2 ملفات معدلة مع 17 إضافات و2 حذوفات

عرض الملف

@@ -21,8 +21,6 @@ FROM nginx:alpine
# Copy the built React app to Nginx's html directory # Copy the built React app to Nginx's html directory
COPY --from=builder /app/dist /usr/share/nginx/html COPY --from=builder /app/dist /usr/share/nginx/html
# Copy custom Nginx configuration
COPY nginx.conf /etc/nginx/nginx.conf
# Expose port 80 # Expose port 80
EXPOSE 80 EXPOSE 80

عرض الملف

@@ -107,6 +107,23 @@ src/
Create a `.env` file in the root directory with necessary environment variables. Create a `.env` file in the root directory with necessary environment variables.
## Deployment with Docker
This project includes Docker configuration files for easy deployment:
1. Build and run the application using Docker Compose:
```bash
docker-compose up --build
```
2. The frontend will be available at http://localhost:80
3. The backend API will be available at http://localhost:3001
The Docker setup includes:
- A frontend service running Nginx to serve the React application
- A backend service running Node.js Express server
- Proper networking between services
## License ## License
This project is proprietary and confidential. This project is proprietary and confidential.