Wikid82
a3c164a394
refactor: update error handling to use unknown type for better type safety
2025-11-25 22:08:54 +00:00
Wikid82
07be2155be
Refactor Security Management: Split Security page into Users, Providers, and Policies components; remove deprecated Security component; implement CRUD functionality for users, providers, and policies; enhance Uptime page with monitor editing capabilities.
2025-11-25 14:53:06 +00:00
Wikid82
7a1f577771
feat: add forward authentication configuration and UI
...
- Introduced ForwardAuthConfig model to store global forward authentication settings.
- Updated Manager to fetch and apply forward authentication configuration.
- Added ForwardAuthHandler to create a reverse proxy handler for authentication.
- Enhanced ProxyHost model to include forward authentication options.
- Created Security page and ForwardAuthSettings component for managing authentication settings.
- Implemented API endpoints for fetching and updating forward authentication configuration.
- Added tests for new functionality including validation and error handling.
- Updated frontend components to support forward authentication settings.
2025-11-25 13:25:05 +00:00
Wikid82
78b782974e
feat: add custom name handling for proxy hosts and enhance import functionality
2025-11-25 03:50:23 +00:00
Wikid82
dea012d471
feat: improve sorting logic in CertificateList by adding block scope for case statements
2025-11-25 02:52:35 +00:00
Wikid82
cc6bc7d6d6
feat: add name field to ProxyHost and implement sorting functionality in ProxyHosts and CertificateList components
2025-11-25 02:50:32 +00:00
Wikid82
72975c674a
feat: enhance certificate handling with staging support and update UI for untrusted status
2025-11-25 01:53:58 +00:00
Wikid82
017ee4f8bd
feat: clean up invalid Let's Encrypt certificate associations and update UI to reflect custom certificate usage
2025-11-25 01:18:11 +00:00
Wikid82
5bfe923e37
feat: add Certificate interface and update ProxyHostForm and ProxyHosts components to display certificate details
2025-11-25 01:06:45 +00:00
Wikid82
0415f5da77
feat: enhance import handling with overwrite support and detailed conflict resolution
...
feat: add subroute handler extraction for improved Caddyfile parsing
test: add tests for subroute handler extraction functionality
fix: update UI to display staging certificate status and improve dashboard metrics
docs: clarify staging certificate deletion process in ACME documentation
2025-11-25 00:35:42 +00:00
Wikid82
897959a621
feat: enhance import handling with detailed conflict resolution and UI updates
2025-11-24 23:48:25 +00:00
Wikid82
6feff3e8ce
chore: remove cashed
2025-11-24 18:22:01 +00:00
Wikid82
9c842e7eab
chore: remove cached
2025-11-24 18:21:11 +00:00
Wikid82
9f54438955
Add tests for error handling in backup, notification, and proxy host handlers; enhance certificate service with persistence tests; refactor backup service for scheduled backups; improve frontend form handling and add API tests for certificates, domains, and proxy hosts; implement frontend test coverage script.
2025-11-24 03:52:37 +00:00
Wikid82
8120806c68
chore: Update .gitignore and commit remaining frontend changes
2025-11-23 20:44:19 +00:00
Wikid82
0fe5c6fa92
chore: update layout styles for improved responsiveness and add parsing utility
2025-11-23 16:29:25 +00:00
Wikid82
e47121f267
chore: update configuration files and styles for improved debugging and layout
2025-11-23 16:19:15 +00:00
Wikid82
ce89c63afc
feat: implement certificate upload and deletion functionality, enhance certificate management in the API and frontend
2025-11-22 23:05:23 -05:00
Wikid82
f258317190
fix: improve error handling in proxy host form submission
2025-11-22 22:02:48 -05:00
Wikid82
c93a5edd0e
feat: enhance container selection logic for remote servers by prioritizing host IP and mapped public ports
2025-11-22 21:26:09 -05:00
Wikid82
ba67cc2274
fix: update remote server form tests for new test connection feature
2025-11-22 20:14:31 -05:00
Wikid82
8a60325464
feat: enhance import session handling by adding session UUID to commitImport function
2025-11-22 15:58:12 -05:00
Wikid82
fea86a6c76
feat: enhance import functionality with Caddyfile content preview and optional mounting in Docker
2025-11-22 14:29:21 -05:00
Wikid82
902603d5ad
feat: add frontend test hook and update test cases for ProxyHostForm and SystemStatus components
2025-11-21 23:39:06 -05:00
Wikid82
807481ee4e
feat: enhance sidebar navigation with collapsible menus and icons for better usability
2025-11-21 21:55:42 -05:00
Wikid82
3256cc845b
feat: add log level filtering and enhance logging configuration; update UI for improved navigation and settings structure
2025-11-21 21:32:43 -05:00
Wikid82
94592c8515
feat: integrate Caddy manager into proxy host handler and enhance authorization middleware; update frontend components for improved UI and functionality
2025-11-21 20:42:52 -05:00
Wikid82
870af044f8
feat: add test connection functionality for proxy hosts and enhance UI for testing connections
2025-11-21 18:06:48 -05:00
Wikid82
b3c56529a6
feat: add suffix lookup functionality with trie structure
...
- Implemented a new suffix-trie.ts file for efficient domain suffix lookups.
- Introduced a lookupInTrie function to search for public suffixes in a trie.
- Added suffixLookup function to check if a hostname has a valid public suffix.
- Created package.json and package-lock.json to manage dependencies, including tldts and tldts-core.
2025-11-21 17:43:43 -05:00
Wikid82
1ba719366b
fix: update default values for SSL and HTTP2 settings; reorganize domain names section
2025-11-21 17:22:05 -05:00
Wikid82
c52c96df69
fix: update connection handling in ProxyHostForm and improve tooltip descriptions in useDocker
2025-11-21 16:29:42 -05:00
Wikid82
cf23ddb666
feat: add domain management functionality with CRUD operations and integrate into UI
2025-11-21 16:15:39 -05:00
Wikid82
f6bd3ecb59
feat: enhance NotificationCenter with system update notifications and improve ProxyHostForm connection source handling
2025-11-21 15:09:18 -05:00
Wikid82
1a29b7ae76
feat: center header title and improve email update confirmation message
2025-11-21 14:26:42 -05:00
Wikid82
50e4932148
feat: add current password verification for email updates and implement tasks layout with navigation
2025-11-21 13:37:19 -05:00
Wikid82
a00dea5419
feat: normalize email addresses to lowercase in user registration and profile updates
...
- Updated user registration and profile update handlers to convert email addresses to lowercase before saving to the database.
- Added integration tests to verify login functionality after email changes, ensuring case insensitivity.
- Introduced a new Account page to replace the Security page, consolidating user account management features.
- Removed the old Security page and updated routing in the Settings layout.
- Enhanced the SystemStatus component to provide user feedback on update availability.
- Added password change functionality in the Account page, allowing users to update their passwords securely.
2025-11-21 13:04:49 -05:00
Wikid82
c8822f61ef
feat: enhance sidebar collapse functionality and improve layout header structure
2025-11-21 12:15:18 -05:00
Wikid82
8eed365743
feat: enhance email validation in Setup and Security pages, add sidebar collapse functionality in Layout
2025-11-21 11:46:09 -05:00
Wikid82
2ec7adab43
feat: add PasswordStrengthMeter component and integrate it into Security and Setup pages
2025-11-21 10:49:42 -05:00
Wikid82
96cb7c8ef4
test: improve backend coverage for caddy, backup and import services
2025-11-20 22:56:11 -05:00
Wikid82
3ec2e47d78
test: improve frontend coverage and exclude backend docker services
2025-11-20 22:36:44 -05:00
Wikid82
62904858b2
refactor: reorganize imports and improve error handling across components
2025-11-20 22:21:32 -05:00
Wikid82
9f62a4a2df
feat: add Docker container management functionality
...
- Implement DockerHandler to handle API requests for listing Docker containers.
- Create DockerService to interact with Docker API and retrieve container information.
- Add routes for Docker container management in the API.
- Introduce frontend API integration for Docker container listing.
- Enhance ProxyHostForm to allow quick selection of Docker containers.
- Update Docker-related tests to ensure functionality and error handling.
- Modify Docker Compose files to enable Docker socket access for local and remote environments.
- Add TypeScript configurations for improved build processes.
2025-11-20 21:27:02 -05:00
Wikid82
6db6652cd2
feat: Implement advanced access logging with Caddy JSON format, filtering, and download
2025-11-20 13:19:01 -05:00
Wikid82
113745aa03
feat: add NotificationCenter and SystemStatus components for improved user notifications and system updates
2025-11-20 11:38:15 -05:00
Wikid82
34a33c3a2e
feat: enhance Layout tests with QueryClient integration and async version check
2025-11-20 11:38:05 -05:00
Wikid82
4d1077f030
feat: add 'Logs' navigation item to the layout
2025-11-20 10:28:19 -05:00
Wikid82
9d39241c61
feat: update health check API response and integrate versioning in Layout component
2025-11-20 09:54:55 -05:00
Wikid82
f166007e3f
fix: update RequireAuth component to accept ReactNode as children type
2025-11-20 01:22:48 -05:00
Wikid82
39de0a67ef
feat: add Tailwind CSS support and refactor Layout component structure
2025-11-20 00:01:26 -05:00