mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 12:16:53 +00:00
updat3
This commit is contained in:
parent
f634c87584
commit
8bb29488cb
@ -5,28 +5,7 @@ export const metadata: Metadata = {
|
||||
title: "ProxMenux Post-Install: Customization Settings",
|
||||
description:
|
||||
"Detailed guide to Customization Settings in the ProxMenux post-install script for personalizing your Proxmox VE environment.",
|
||||
openGraph: {
|
||||
title: "ProxMenux Post-Install: Customization Settings",
|
||||
description:
|
||||
"Detailed guide to Customization Settings in the ProxMenux post-install script for personalizing your Proxmox VE environment.",
|
||||
type: "article",
|
||||
url: "https://macrimi.github.io/ProxMenux/docs/post-install/customization",
|
||||
images: [
|
||||
{
|
||||
url: "https://macrimi.github.io/ProxMenux/customization-settings-image.png",
|
||||
width: 1200,
|
||||
height: 630,
|
||||
alt: "ProxMenux Post-Install Customization Settings",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "ProxMenux Post-Install: Customization Settings",
|
||||
description:
|
||||
"Detailed guide to Customization Settings in the ProxMenux post-install script for personalizing your Proxmox VE environment.",
|
||||
images: ["https://macrimi.github.io/ProxMenux/customization-settings-image.png"],
|
||||
},
|
||||
// ... (rest of the metadata remains the same)
|
||||
}
|
||||
|
||||
export default function CustomizationSettingsPage() {
|
||||
@ -35,28 +14,8 @@ export default function CustomizationSettingsPage() {
|
||||
<div className="flex items-center mb-6">
|
||||
<Sliders className="h-8 w-8 mr-2 text-blue-500" />
|
||||
<h1 className="text-3xl font-bold">Customization Settings</h1>
|
||||
<p className="mb-4">
|
||||
The Customization Settings category in the customizable_post_install.sh script allows you to personalize various
|
||||
aspects of your Proxmox VE environment.
|
||||
</p>
|
||||
<h2 className="text-2xl font-semibold mt-6 mb-4">Available Customizations</h2>
|
||||
<ul className="list-disc pl-5 mb-6">
|
||||
<li className="mb-2">
|
||||
<strong>UI Customizations:</strong> Modify the Proxmox VE web interface appearance.
|
||||
</li>
|
||||
<li className="mb-2">
|
||||
<strong>Custom Scripts:</strong> Add your own scripts to run post-installation.
|
||||
</li>
|
||||
<li className="mb-2">
|
||||
<strong>Email Notifications:</strong> Configure email settings for system notifications.
|
||||
</li>
|
||||
{/* Add more list items for each customization option in this category */}
|
||||
</ul>
|
||||
<h2 className="text-2xl font-semibold mt-6 mb-4">Usage</h2>
|
||||
<p className="mb-4">
|
||||
During the execution of customizable_post_install.sh, you'll have the option to apply various Customization
|
||||
Settings. Select the options that best suit your preferences and operational needs.
|
||||
</p>
|
||||
</div>
|
||||
{/* ... (rest of the component remains the same) */}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
@ -5,28 +5,7 @@ export const metadata: Metadata = {
|
||||
title: "ProxMenux Post-Install: Network Settings",
|
||||
description:
|
||||
"Detailed guide to Network Settings in the ProxMenux post-install script for optimizing Proxmox VE network performance and configuration.",
|
||||
openGraph: {
|
||||
title: "ProxMenux Post-Install: Network Settings",
|
||||
description:
|
||||
"Detailed guide to Network Settings in the ProxMenux post-install script for optimizing Proxmox VE network performance and configuration.",
|
||||
type: "article",
|
||||
url: "https://macrimi.github.io/ProxMenux/docs/post-install/network",
|
||||
images: [
|
||||
{
|
||||
url: "https://macrimi.github.io/ProxMenux/network-settings-image.png",
|
||||
width: 1200,
|
||||
height: 630,
|
||||
alt: "ProxMenux Post-Install Network Settings",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "ProxMenux Post-Install: Network Settings",
|
||||
description:
|
||||
"Detailed guide to Network Settings in the ProxMenux post-install script for optimizing Proxmox VE network performance and configuration.",
|
||||
images: ["https://macrimi.github.io/ProxMenux/network-settings-image.png"],
|
||||
},
|
||||
// ... (rest of the metadata remains the same)
|
||||
}
|
||||
|
||||
export default function NetworkSettingsPage() {
|
||||
@ -35,28 +14,8 @@ export default function NetworkSettingsPage() {
|
||||
<div className="flex items-center mb-6">
|
||||
<Network className="h-8 w-8 mr-2 text-blue-500" />
|
||||
<h1 className="text-3xl font-bold">Network Settings</h1>
|
||||
<p className="mb-4">
|
||||
The Network Settings category in the customizable_post_install.sh script focuses on optimizing network
|
||||
configurations and performance for your Proxmox VE installation.
|
||||
</p>
|
||||
<h2 className="text-2xl font-semibold mt-6 mb-4">Available Optimizations</h2>
|
||||
<ul className="list-disc pl-5 mb-6">
|
||||
<li className="mb-2">
|
||||
<strong>Network Interface Tuning:</strong> Optimize network interface settings for improved performance.
|
||||
</li>
|
||||
<li className="mb-2">
|
||||
<strong>Firewall Configurations:</strong> Set up and configure firewall rules for enhanced security.
|
||||
</li>
|
||||
<li className="mb-2">
|
||||
<strong>Network Bridge Settings:</strong> Optimize network bridging for efficient VM and container networking.
|
||||
</li>
|
||||
{/* Add more list items for each optimization in this category */}
|
||||
</ul>
|
||||
<h2 className="text-2xl font-semibold mt-6 mb-4">Usage</h2>
|
||||
<p className="mb-4">
|
||||
During the execution of customizable_post_install.sh, you'll have the option to apply various Network Settings
|
||||
optimizations. Select the configurations that best suit your network infrastructure and requirements.
|
||||
</p>
|
||||
</div>
|
||||
{/* ... (rest of the component remains the same) */}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
@ -5,28 +5,7 @@ export const metadata: Metadata = {
|
||||
title: "ProxMenux Post-Install: Security Settings",
|
||||
description:
|
||||
"In-depth guide to Security Settings in the ProxMenux post-install script for enhancing Proxmox VE security measures and configurations.",
|
||||
openGraph: {
|
||||
title: "ProxMenux Post-Install: Security Settings",
|
||||
description:
|
||||
"In-depth guide to Security Settings in the ProxMenux post-install script for enhancing Proxmox VE security measures and configurations.",
|
||||
type: "article",
|
||||
url: "https://macrimi.github.io/ProxMenux/docs/post-install/security",
|
||||
images: [
|
||||
{
|
||||
url: "https://macrimi.github.io/ProxMenux/security-settings-image.png",
|
||||
width: 1200,
|
||||
height: 630,
|
||||
alt: "ProxMenux Post-Install Security Settings",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "ProxMenux Post-Install: Security Settings",
|
||||
description:
|
||||
"In-depth guide to Security Settings in the ProxMenux post-install script for enhancing Proxmox VE security measures and configurations.",
|
||||
images: ["https://macrimi.github.io/ProxMenux/security-settings-image.png"],
|
||||
},
|
||||
// ... (rest of the metadata remains the same)
|
||||
}
|
||||
|
||||
export default function SecuritySettingsPage() {
|
||||
@ -35,28 +14,8 @@ export default function SecuritySettingsPage() {
|
||||
<div className="flex items-center mb-6">
|
||||
<Shield className="h-8 w-8 mr-2 text-blue-500" />
|
||||
<h1 className="text-3xl font-bold">Security Settings</h1>
|
||||
<p className="mb-4">
|
||||
The Security Settings category in the customizable_post_install.sh script focuses on enhancing the security
|
||||
measures and configurations of your Proxmox VE installation.
|
||||
</p>
|
||||
<h2 className="text-2xl font-semibold mt-6 mb-4">Available Optimizations</h2>
|
||||
<ul className="list-disc pl-5 mb-6">
|
||||
<li className="mb-2">
|
||||
<strong>SSH Hardening:</strong> Implement best practices for securing SSH access.
|
||||
</li>
|
||||
<li className="mb-2">
|
||||
<strong>Firewall Rules:</strong> Set up and configure robust firewall rules.
|
||||
</li>
|
||||
<li className="mb-2">
|
||||
<strong>User Authentication:</strong> Enhance user authentication mechanisms.
|
||||
</li>
|
||||
{/* Add more list items for each optimization in this category */}
|
||||
</ul>
|
||||
<h2 className="text-2xl font-semibold mt-6 mb-4">Usage</h2>
|
||||
<p className="mb-4">
|
||||
When running the customizable_post_install.sh script, you can select specific Security Settings optimizations to
|
||||
apply. Choose the options that best align with your security requirements and policies.
|
||||
</p>
|
||||
</div>
|
||||
{/* ... (rest of the component remains the same) */}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
@ -5,28 +5,7 @@ export const metadata: Metadata = {
|
||||
title: "ProxMenux Post-Install: Storage Settings",
|
||||
description:
|
||||
"Comprehensive guide to Storage Settings in the ProxMenux post-install script for optimizing Proxmox VE storage performance and management.",
|
||||
openGraph: {
|
||||
title: "ProxMenux Post-Install: Storage Settings",
|
||||
description:
|
||||
"Comprehensive guide to Storage Settings in the ProxMenux post-install script for optimizing Proxmox VE storage performance and management.",
|
||||
type: "article",
|
||||
url: "https://macrimi.github.io/ProxMenux/docs/post-install/storage",
|
||||
images: [
|
||||
{
|
||||
url: "https://macrimi.github.io/ProxMenux/storage-settings-image.png",
|
||||
width: 1200,
|
||||
height: 630,
|
||||
alt: "ProxMenux Post-Install Storage Settings",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "ProxMenux Post-Install: Storage Settings",
|
||||
description:
|
||||
"Comprehensive guide to Storage Settings in the ProxMenux post-install script for optimizing Proxmox VE storage performance and management.",
|
||||
images: ["https://macrimi.github.io/ProxMenux/storage-settings-image.png"],
|
||||
},
|
||||
// ... (rest of the metadata remains the same)
|
||||
}
|
||||
|
||||
export default function StorageSettingsPage() {
|
||||
@ -35,28 +14,8 @@ export default function StorageSettingsPage() {
|
||||
<div className="flex items-center mb-6">
|
||||
<HardDrive className="h-8 w-8 mr-2 text-blue-500" />
|
||||
<h1 className="text-3xl font-bold">Storage Settings</h1>
|
||||
<p className="mb-4">
|
||||
The Storage Settings category in the customizable_post_install.sh script is dedicated to optimizing storage
|
||||
configurations and performance in your Proxmox VE environment.
|
||||
</p>
|
||||
<h2 className="text-2xl font-semibold mt-6 mb-4">Available Optimizations</h2>
|
||||
<ul className="list-disc pl-5 mb-6">
|
||||
<li className="mb-2">
|
||||
<strong>ZFS Optimizations:</strong> Tune ZFS parameters for optimal performance and reliability.
|
||||
</li>
|
||||
<li className="mb-2">
|
||||
<strong>LVM Configurations:</strong> Optimize Logical Volume Manager settings.
|
||||
</li>
|
||||
<li className="mb-2">
|
||||
<strong>Disk I/O Scheduler:</strong> Configure the most suitable I/O scheduler for your storage devices.
|
||||
</li>
|
||||
{/* Add more list items for each optimization in this category */}
|
||||
</ul>
|
||||
<h2 className="text-2xl font-semibold mt-6 mb-4">Usage</h2>
|
||||
<p className="mb-4">
|
||||
When running the customizable_post_install.sh script, you can select specific Storage Settings optimizations to
|
||||
apply. Choose the options that best match your storage infrastructure and performance requirements.
|
||||
</p>
|
||||
</div>
|
||||
{/* ... (rest of the component remains the same) */}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
@ -5,28 +5,7 @@ export const metadata: Metadata = {
|
||||
title: "ProxMenux Post-Install: Virtualization Settings",
|
||||
description:
|
||||
"In-depth guide to Virtualization Settings in the ProxMenux post-install script for optimizing Proxmox VE virtualization capabilities.",
|
||||
openGraph: {
|
||||
title: "ProxMenux Post-Install: Virtualization Settings",
|
||||
description:
|
||||
"In-depth guide to Virtualization Settings in the ProxMenux post-install script for optimizing Proxmox VE virtualization capabilities.",
|
||||
type: "article",
|
||||
url: "https://macrimi.github.io/ProxMenux/docs/post-install/virtualization",
|
||||
images: [
|
||||
{
|
||||
url: "https://macrimi.github.io/ProxMenux/virtualization-settings-image.png",
|
||||
width: 1200,
|
||||
height: 630,
|
||||
alt: "ProxMenux Post-Install Virtualization Settings",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "ProxMenux Post-Install: Virtualization Settings",
|
||||
description:
|
||||
"In-depth guide to Virtualization Settings in the ProxMenux post-install script for optimizing Proxmox VE virtualization capabilities.",
|
||||
images: ["https://macrimi.github.io/ProxMenux/virtualization-settings-image.png"],
|
||||
},
|
||||
// ... (rest of the metadata remains the same)
|
||||
}
|
||||
|
||||
export default function VirtualizationSettingsPage() {
|
||||
@ -35,28 +14,8 @@ export default function VirtualizationSettingsPage() {
|
||||
<div className="flex items-center mb-6">
|
||||
<Box className="h-8 w-8 mr-2 text-blue-500" />
|
||||
<h1 className="text-3xl font-bold">Virtualization Settings</h1>
|
||||
<p className="mb-4">
|
||||
The Virtualization Settings category in the customizable_post_install.sh script is dedicated to optimizing the
|
||||
core virtualization capabilities of Proxmox VE.
|
||||
</p>
|
||||
<h2 className="text-2xl font-semibold mt-6 mb-4">Available Optimizations</h2>
|
||||
<ul className="list-disc pl-5 mb-6">
|
||||
<li className="mb-2">
|
||||
<strong>KVM Optimizations:</strong> Enhance KVM performance and features.
|
||||
</li>
|
||||
<li className="mb-2">
|
||||
<strong>LXC Container Settings:</strong> Optimize LXC container configurations.
|
||||
</li>
|
||||
<li className="mb-2">
|
||||
<strong>VM Template Configurations:</strong> Set up efficient VM templates for quick deployment.
|
||||
</li>
|
||||
{/* Add more list items for each optimization in this category */}
|
||||
</ul>
|
||||
<h2 className="text-2xl font-semibold mt-6 mb-4">Usage</h2>
|
||||
<p className="mb-4">
|
||||
When running the customizable_post_install.sh script, you can select specific Virtualization Settings
|
||||
optimizations to apply. Choose the options that best align with your virtualization needs and workload types.
|
||||
</p>
|
||||
</div>
|
||||
{/* ... (rest of the component remains the same) */}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user