Web UI for ProxmoxAAS
Go to file
2024-08-24 04:45:49 +00:00
css remove custom background from select, 2024-08-08 19:50:16 +00:00
images move search icon to common 2024-08-13 19:03:11 +00:00
modules update wfa.js 2024-08-07 19:54:33 +00:00
scripts add password confirm to create new container instance 2024-08-05 20:45:37 +00:00
.eslintrc.json move w3.css to modules, 2024-07-26 18:34:14 +00:00
.gitignore add js linting, fix js linting issues 2023-06-29 22:20:15 +00:00
.stylelintrc.json add css linting, fix css linting issues 2023-06-29 22:39:21 +00:00
account.html move w3.css to modules, 2024-07-26 18:34:14 +00:00
admin.html switch img icons to svg to fix issues with user selected themes 2024-07-24 19:32:40 +00:00
config.html simplify buttons in config/index, 2024-08-12 17:11:44 +00:00
index.html update search icon link 2024-08-24 04:45:49 +00:00
login.html simplify buttons in config/index, 2024-08-12 17:11:44 +00:00
package.json move w3.css to modules, 2024-07-26 18:34:14 +00:00
README.md add local copy of w3.css fallback, 2023-10-12 17:27:37 +00:00
settings.html move w3.css to modules, 2024-07-26 18:34:14 +00:00
template.vars.js add local copy of w3.css fallback, 2023-10-12 17:27:37 +00:00

ProxmoxAAS Dashboard - Proxmox As A Service User Web Interface

ProxmoxAAS Dashboard provides users of a proxmox based compute on demand service a simplified UI which gives users power management, console access, and instance configuration utility. It also allows administrators to set resource quotas for users and allows users to configure instances without administrator priviledges.

Features

  • Simplified interface for non administrator users
  • Instance power management
  • Instance resource configuration
  • Instance creation and destruction
  • Remote console
  • Extended account management

Prerequisites

  • Proxmox VE Cluster (v7.0+)
  • Reverse proxy server which can proxy the dashboard and API
    • FQDN
  • Web server to host the ProxmoxAAS Dashboard (ie Apache2)

Notes

The supported setup is to use a reverse proxy to serve both the original Proxmox web interface and ProxmoxAAS Dashboard. It is possible other setups can work. Rather than provide specific steps to duplicate a certain setup, the steps included are intended as a guideline of steps required for proper function in most setups. Consequently, the examples provided are only to highlight key settings and do not represent complete working configurations. The instructions also assume you have your own domain name which will substitute <FQDN> in some of the configs.

Installation - Dashboard

  1. Install Apache2 or another HTTP server onto a container or vm, which will be Dashboard Host
  2. Clone this repo onto Dashboard Host, the default location for web root is /var/www/html/
  3. Configure Apache2 to serve the app at port 80 by adding the file dashboard.conf to /etc/apache2/sites-avaliable/ with at least the following:
<VirtualHost *:80>
	DocumentRoot /var/www/html/ProxmoxAAS-Dashboard/
</VirtualHost>
  1. Enable the site by running a2ensite dashboard

After this step, the Dashboard should be available on the Dashboard Host at port 80

Configuration - Dashboard

  1. In Dashboard Host, navigate to this repo's root folder
  2. Rename template.vars.js to vars.js and assign the API variable with the value of the API's URL. This will likely be paas.<FQDN>/api

Installation - API

To install the API, go to ProxmoxAAS API. This is required for the app to function. The API installation will also have steps for setting up the reverse proxy server.