diff --git a/web/app/docs/post-install/customization/page.tsx b/web/app/docs/post-install/customization/page.tsx index c6554e4..4fe7ae7 100644 --- a/web/app/docs/post-install/customization/page.tsx +++ b/web/app/docs/post-install/customization/page.tsx @@ -1,4 +1,5 @@ import type { Metadata } from "next" +import { Sliders } from "lucide-react" export const metadata: Metadata = { title: "ProxMenux Post-Install: Customization Settings", @@ -31,7 +32,9 @@ export const metadata: Metadata = { export default function CustomizationSettingsPage() { return (
-

Customization Settings

+
+ +

Customization Settings

The Customization Settings category in the customizable_post_install.sh script allows you to personalize various aspects of your Proxmox VE environment. diff --git a/web/app/docs/post-install/monitoring/page.tsx b/web/app/docs/post-install/monitoring/page.tsx new file mode 100644 index 0000000..201aff2 --- /dev/null +++ b/web/app/docs/post-install/monitoring/page.tsx @@ -0,0 +1,64 @@ +import type { Metadata } from "next" +import { LineChart } from "lucide-react" + +export const metadata: Metadata = { + title: "ProxMenux Post-Install: Monitoring Settings", + description: + "Comprehensive guide to Monitoring Settings in the ProxMenux post-install script for optimizing Proxmox VE system monitoring and alerting.", + openGraph: { + title: "ProxMenux Post-Install: Monitoring Settings", + description: + "Comprehensive guide to Monitoring Settings in the ProxMenux post-install script for optimizing Proxmox VE system monitoring and alerting.", + type: "article", + url: "https://macrimi.github.io/ProxMenux/docs/post-install/monitoring", + images: [ + { + url: "https://macrimi.github.io/ProxMenux/monitoring-settings-image.png", + width: 1200, + height: 630, + alt: "ProxMenux Post-Install Monitoring Settings", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ProxMenux Post-Install: Monitoring Settings", + description: + "Comprehensive guide to Monitoring Settings in the ProxMenux post-install script for optimizing Proxmox VE system monitoring and alerting.", + images: ["https://macrimi.github.io/ProxMenux/monitoring-settings-image.png"], + }, +} + +export default function MonitoringSettingsPage() { + return ( +

+
+ +

Monitoring Settings

+
+

+ The Monitoring Settings category in the customizable_post_install.sh script focuses on setting up and optimizing + system monitoring and alerting for your Proxmox VE installation. +

+

Available Optimizations

+
    +
  • + System Metrics: Configure collection and storage of key system metrics. +
  • +
  • + Alert Configuration: Set up alerts for critical system events and thresholds. +
  • +
  • + Logging Optimization: Fine-tune system logging for better troubleshooting and analysis. +
  • + {/* Add more list items for each optimization in this category */} +
+

Usage

+

+ When running the customizable_post_install.sh script, you'll be prompted to choose which Monitoring Settings to + apply. Select the options that best suit your monitoring needs and system requirements. +

+
+ ) +} + diff --git a/web/app/docs/post-install/network/page.tsx b/web/app/docs/post-install/network/page.tsx index 86cf1ce..0532f94 100644 --- a/web/app/docs/post-install/network/page.tsx +++ b/web/app/docs/post-install/network/page.tsx @@ -1,4 +1,5 @@ import type { Metadata } from "next" +import { Network } from "lucide-react" export const metadata: Metadata = { title: "ProxMenux Post-Install: Network Settings", @@ -31,7 +32,9 @@ export const metadata: Metadata = { export default function NetworkSettingsPage() { return (
-

Network Settings

+
+ +

Network Settings

The Network Settings category in the customizable_post_install.sh script focuses on optimizing network configurations and performance for your Proxmox VE installation. diff --git a/web/app/docs/post-install/optional/page.tsx b/web/app/docs/post-install/optional/page.tsx new file mode 100644 index 0000000..b87396a --- /dev/null +++ b/web/app/docs/post-install/optional/page.tsx @@ -0,0 +1,64 @@ +import type { Metadata } from "next" +import { Plus } from "lucide-react" + +export const metadata: Metadata = { + title: "ProxMenux Post-Install: Optional Settings", + description: + "Guide to Optional Settings in the ProxMenux post-install script for additional Proxmox VE customizations and features.", + openGraph: { + title: "ProxMenux Post-Install: Optional Settings", + description: + "Guide to Optional Settings in the ProxMenux post-install script for additional Proxmox VE customizations and features.", + type: "article", + url: "https://macrimi.github.io/ProxMenux/docs/post-install/optional", + images: [ + { + url: "https://macrimi.github.io/ProxMenux/optional-settings-image.png", + width: 1200, + height: 630, + alt: "ProxMenux Post-Install Optional Settings", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ProxMenux Post-Install: Optional Settings", + description: + "Guide to Optional Settings in the ProxMenux post-install script for additional Proxmox VE customizations and features.", + images: ["https://macrimi.github.io/ProxMenux/optional-settings-image.png"], + }, +} + +export default function OptionalSettingsPage() { + return ( +

+
+ +

Optional Settings

+
+

+ The Optional Settings category in the customizable_post_install.sh script provides additional customizations and + features that you may choose to implement in your Proxmox VE environment. +

+

Available Options

+
    +
  • + Additional Software: Install optional software packages or tools. +
  • +
  • + Custom Scripts: Add your own scripts to run post-installation. +
  • +
  • + Extended Configurations: Apply additional, non-essential configurations. +
  • + {/* Add more list items for each option in this category */} +
+

Usage

+

+ When running the customizable_post_install.sh script, you'll be presented with these Optional Settings. You can + choose to apply any or all of these settings based on your specific needs and preferences. +

+
+ ) +} + diff --git a/web/app/docs/post-install/performance/page.tsx b/web/app/docs/post-install/performance/page.tsx new file mode 100644 index 0000000..03f4221 --- /dev/null +++ b/web/app/docs/post-install/performance/page.tsx @@ -0,0 +1,64 @@ +import type { Metadata } from "next" +import { Zap } from "lucide-react" + +export const metadata: Metadata = { + title: "ProxMenux Post-Install: Performance Settings", + description: + "Detailed guide to Performance Settings in the ProxMenux post-install script for optimizing Proxmox VE system performance.", + openGraph: { + title: "ProxMenux Post-Install: Performance Settings", + description: + "Detailed guide to Performance Settings in the ProxMenux post-install script for optimizing Proxmox VE system performance.", + type: "article", + url: "https://macrimi.github.io/ProxMenux/docs/post-install/performance", + images: [ + { + url: "https://macrimi.github.io/ProxMenux/performance-settings-image.png", + width: 1200, + height: 630, + alt: "ProxMenux Post-Install Performance Settings", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ProxMenux Post-Install: Performance Settings", + description: + "Detailed guide to Performance Settings in the ProxMenux post-install script for optimizing Proxmox VE system performance.", + images: ["https://macrimi.github.io/ProxMenux/performance-settings-image.png"], + }, +} + +export default function PerformanceSettingsPage() { + return ( +
+
+ +

Performance Settings

+
+

+ The Performance Settings category in the customizable_post_install.sh script is dedicated to optimizing the + overall performance of your Proxmox VE system. +

+

Available Optimizations

+
    +
  • + CPU Tuning: Optimize CPU governor and other CPU-related settings. +
  • +
  • + Memory Management: Fine-tune memory allocation and swapping behavior. +
  • +
  • + I/O Optimization: Adjust I/O scheduler and other disk-related performance settings. +
  • + {/* Add more list items for each optimization in this category */} +
+

Usage

+

+ During the execution of customizable_post_install.sh, you'll have the option to apply various Performance + Settings. Choose the optimizations that best match your hardware configuration and workload requirements. +

+
+ ) +} + diff --git a/web/app/docs/post-install/security/page.tsx b/web/app/docs/post-install/security/page.tsx index 885e028..ccff7f3 100644 --- a/web/app/docs/post-install/security/page.tsx +++ b/web/app/docs/post-install/security/page.tsx @@ -1,4 +1,5 @@ import type { Metadata } from "next" +import { Shield } from "lucide-react" export const metadata: Metadata = { title: "ProxMenux Post-Install: Security Settings", @@ -31,7 +32,9 @@ export const metadata: Metadata = { export default function SecuritySettingsPage() { return (
-

Security Settings

+
+ +

Security Settings

The Security Settings category in the customizable_post_install.sh script focuses on enhancing the security measures and configurations of your Proxmox VE installation. diff --git a/web/app/docs/post-install/storage/page.tsx b/web/app/docs/post-install/storage/page.tsx index 2ad1686..0181bd9 100644 --- a/web/app/docs/post-install/storage/page.tsx +++ b/web/app/docs/post-install/storage/page.tsx @@ -1,4 +1,5 @@ import type { Metadata } from "next" +import { HardDrive } from "lucide-react" export const metadata: Metadata = { title: "ProxMenux Post-Install: Storage Settings", @@ -31,7 +32,9 @@ export const metadata: Metadata = { export default function StorageSettingsPage() { return (

-

Storage Settings

+
+ +

Storage Settings

The Storage Settings category in the customizable_post_install.sh script is dedicated to optimizing storage configurations and performance in your Proxmox VE environment. diff --git a/web/app/docs/post-install/virtualization/page.tsx b/web/app/docs/post-install/virtualization/page.tsx index 862c193..d97bcc3 100644 --- a/web/app/docs/post-install/virtualization/page.tsx +++ b/web/app/docs/post-install/virtualization/page.tsx @@ -1,4 +1,5 @@ import type { Metadata } from "next" +import { Box } from "lucide-react" export const metadata: Metadata = { title: "ProxMenux Post-Install: Virtualization Settings", @@ -31,7 +32,9 @@ export const metadata: Metadata = { export default function VirtualizationSettingsPage() { return (

-

Virtualization Settings

+
+ +

Virtualization Settings

The Virtualization Settings category in the customizable_post_install.sh script is dedicated to optimizing the core virtualization capabilities of Proxmox VE.