[PR #497] [MERGED] Feat nginx configuration #499

Closed
opened 2026-03-03 11:30:16 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dflow-sh/dflow/pull/497
Author: @pavanbhaskardev
Created: 11/18/2025
Status: Merged
Merged: 11/18/2025
Merged by: @pavanbhaskardev

Base: mainHead: feat-nginx-configuration


📝 Commits (6)

  • bfb9967 chore: added proxy tab with nginx parameters update support
  • a586910 chore: add docs for nginx proxy parameters configuration
  • b6cf4a2 chore: shifted service tabs to individual pages
  • 6cd1d2c chore: add loading.tsx to all pages in service details page
  • 38f0e06 chore: add service page restriction
  • e2a2d13 chore: removed tailscale connection log

📊 Changes

36 files changed (+1370 additions, -294 deletions)

View changed files

📝 content-collections.ts (+51 -20)
📝 package.json (+2 -0)
📝 pnpm-lock.yaml (+353 -4)
📝 src/actions/pages/service/index.ts (+32 -0)
📝 src/actions/service/index.ts (+66 -0)
📝 src/actions/service/validator.ts (+39 -0)
src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/backups/page.tsx (+44 -0)
src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/deployments/page.tsx (+37 -0)
src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/domains/page.tsx (+45 -0)
src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/environment/page.tsx (+26 -0)
📝 src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/layout.client.tsx (+31 -43)
src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/loading.tsx (+12 -0)
src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/logs/page.tsx (+28 -0)
📝 src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/page.tsx (+8 -128)
src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/proxy/page.tsx (+33 -0)
src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/scaling/page.tsx (+38 -0)
src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/settings/page.tsx (+28 -0)
src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/volumes/page.tsx (+26 -0)
📝 src/app/(frontend)/(dashboard)/[organisation]/docs/[categorySlug]/DocsSidebar.tsx (+1 -1)
📝 src/app/(frontend)/(dashboard)/[organisation]/docs/[categorySlug]/[slug]/page.tsx (+1 -3)

...and 16 more files

📄 Description

  1. Added nginx parameters configuration support
  2. Added docs required docs for configuration
  3. Refactored the service-id page

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/dflow-sh/dflow/pull/497 **Author:** [@pavanbhaskardev](https://github.com/pavanbhaskardev) **Created:** 11/18/2025 **Status:** ✅ Merged **Merged:** 11/18/2025 **Merged by:** [@pavanbhaskardev](https://github.com/pavanbhaskardev) **Base:** `main` ← **Head:** `feat-nginx-configuration` --- ### 📝 Commits (6) - [`bfb9967`](https://github.com/dflow-sh/dflow/commit/bfb99676d342bd11faf3b69adc390ae5129281c5) chore: added proxy tab with nginx parameters update support - [`a586910`](https://github.com/dflow-sh/dflow/commit/a586910468beed0257a973d9309b61cd8b306ca2) chore: add docs for nginx proxy parameters configuration - [`b6cf4a2`](https://github.com/dflow-sh/dflow/commit/b6cf4a20ffee0f3bc9bbb3b98578235cfe54e95d) chore: shifted service tabs to individual pages - [`6cd1d2c`](https://github.com/dflow-sh/dflow/commit/6cd1d2cb6aaad2801ab0d25d655cf4b899dcedd4) chore: add loading.tsx to all pages in service details page - [`38f0e06`](https://github.com/dflow-sh/dflow/commit/38f0e06d259642e6849a42026c1b8b55ee91f314) chore: add service page restriction - [`e2a2d13`](https://github.com/dflow-sh/dflow/commit/e2a2d1362abd6a9ca1257226c4736266de0342bf) chore: removed tailscale connection log ### 📊 Changes **36 files changed** (+1370 additions, -294 deletions) <details> <summary>View changed files</summary> 📝 `content-collections.ts` (+51 -20) 📝 `package.json` (+2 -0) 📝 `pnpm-lock.yaml` (+353 -4) 📝 `src/actions/pages/service/index.ts` (+32 -0) 📝 `src/actions/service/index.ts` (+66 -0) 📝 `src/actions/service/validator.ts` (+39 -0) ➕ `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/backups/page.tsx` (+44 -0) ➕ `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/deployments/page.tsx` (+37 -0) ➕ `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/domains/page.tsx` (+45 -0) ➕ `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/environment/page.tsx` (+26 -0) 📝 `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/layout.client.tsx` (+31 -43) ➕ `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/loading.tsx` (+12 -0) ➕ `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/logs/page.tsx` (+28 -0) 📝 `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/page.tsx` (+8 -128) ➕ `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/proxy/page.tsx` (+33 -0) ➕ `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/scaling/page.tsx` (+38 -0) ➕ `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/settings/page.tsx` (+28 -0) ➕ `src/app/(frontend)/(dashboard)/[organisation]/dashboard/project/[projectId]/service/[serviceId]/volumes/page.tsx` (+26 -0) 📝 `src/app/(frontend)/(dashboard)/[organisation]/docs/[categorySlug]/DocsSidebar.tsx` (+1 -1) 📝 `src/app/(frontend)/(dashboard)/[organisation]/docs/[categorySlug]/[slug]/page.tsx` (+1 -3) _...and 16 more files_ </details> ### 📄 Description 1. Added nginx parameters configuration support 2. Added docs required docs for configuration 3. Refactored the service-id page --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 11:30:16 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/dflow#499
No description provided.