mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2025-02-08 16:59:17 +00:00
Compare commits
30 Commits
59dd22d589
...
75c2aae3fa
Author | SHA1 | Date | |
---|---|---|---|
|
75c2aae3fa | ||
|
258b1bd9fd | ||
|
6d4eb9c3ee | ||
|
15faa76b69 | ||
|
393f6d74c9 | ||
|
f51762420a | ||
|
f8c10ca80b | ||
|
3fca76dbbc | ||
|
b57689ec50 | ||
|
1f8f593116 | ||
|
330315c615 | ||
|
504d47d246 | ||
|
ab206530e0 | ||
|
f5b78d5dcc | ||
|
3f9863ebf9 | ||
|
786e8963b9 | ||
|
6cc4244f70 | ||
|
f5a260a399 | ||
|
f1f8f78420 | ||
|
6c42b5c21a | ||
|
24d24421d1 | ||
|
9e4c627323 | ||
|
2551bf6f9f | ||
|
8533380813 | ||
|
f65abd9ac8 | ||
|
85387563f0 | ||
|
5977f8f936 | ||
|
a15a59e615 | ||
|
14dfaa9bde | ||
|
75778976d0 |
2
.github/autolabeler-config.json
vendored
2
.github/autolabeler-config.json
vendored
@ -50,7 +50,7 @@
|
|||||||
"maintenance": [
|
"maintenance": [
|
||||||
{
|
{
|
||||||
"fileStatus": null,
|
"fileStatus": null,
|
||||||
"includeGlobs": ["*.md", ".github/**"],
|
"includeGlobs": ["*.md", ".github/**", "misc/*.func", "ct/create_lxc.sh"],
|
||||||
"excludeGlobs": []
|
"excludeGlobs": []
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
86
.github/workflows/update_json_date.yml
vendored
86
.github/workflows/update_json_date.yml
vendored
@ -1,68 +1,48 @@
|
|||||||
name: Update JSON Date in PR
|
name: Update JSON Date
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches:
|
types: [opened, synchronize, reopened]
|
||||||
- main
|
|
||||||
types:
|
|
||||||
- opened
|
|
||||||
- synchronize
|
|
||||||
- reopened
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
update_json:
|
list-files:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repository
|
- name: Checkout PR Branch
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Configure Git user
|
|
||||||
run: |
|
|
||||||
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
|
||||||
git config --global user.name "github-actions[bot]"
|
|
||||||
|
|
||||||
- name: Get list of changed files in PR
|
|
||||||
id: files
|
|
||||||
uses: actions/github-script@v7
|
|
||||||
with:
|
with:
|
||||||
script: |
|
ref: ${{ github.event.pull_request.head.ref }}
|
||||||
const prNumber = context.payload.pull_request.number;
|
|
||||||
const prFiles = await github.rest.pulls.listFiles({
|
|
||||||
owner: context.repo.owner,
|
|
||||||
repo: context.repo.repo,
|
|
||||||
pull_number: prNumber,
|
|
||||||
});
|
|
||||||
|
|
||||||
// Filter for JSON files only
|
- name: Fetch PR changes
|
||||||
const changedJsonFiles = prFiles.data
|
|
||||||
.filter(file => file.filename.endsWith('.json'))
|
|
||||||
.map(file => file.filename);
|
|
||||||
|
|
||||||
core.setOutput('changed_files', changedJsonFiles.join('\n'));
|
|
||||||
console.log('Changed JSON files:', changedJsonFiles);
|
|
||||||
|
|
||||||
- name: Update dates in changed JSON files
|
|
||||||
run: |
|
run: |
|
||||||
changed_files="${{ steps.files.outputs.changed_files }}"
|
git remote add fork https://github.com/${{ github.event.pull_request.head.repo.full_name }}.git
|
||||||
if [[ -z "$changed_files" ]]; then
|
git fetch fork ${{ github.event.pull_request.head.ref }}:pullreq
|
||||||
echo "No JSON files changed in this PR. Exiting."
|
git checkout pullreq
|
||||||
exit 0
|
|
||||||
|
- name: Update JSON
|
||||||
|
id: changed-files
|
||||||
|
run: |
|
||||||
|
FILES=$(gh api repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/files --jq '.[].filename' | tr '\n' ' ')
|
||||||
|
echo "changed_files=${FILES}"
|
||||||
|
for FILE in $FILES; do
|
||||||
|
if [[ "$FILE" =~ /(.*)\.json ]]; then
|
||||||
|
NAME="${BASH_REMATCH[1]}"
|
||||||
|
else
|
||||||
|
echo "no new JSON in ${FILES}"
|
||||||
|
continue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
for file in $changed_files; do
|
JSON_FILE="json/${NAME}.json"
|
||||||
echo "Updating $file with current date."
|
if [[ -f "$JSON_FILE" ]]; then
|
||||||
# Your logic to update the file
|
echo "Updating date_created in $JSON_FILE"
|
||||||
jq '.date_created = "'"$(date +%Y-%m-%d)"'"' "$file" > tmp.$$.json && mv tmp.$$.json "$file"
|
jq --arg date "$(date +%Y-%m-%d)" '.date_created = $date' "$JSON_FILE" > tmp.json && mv tmp.json "$JSON_FILE"
|
||||||
|
else
|
||||||
|
echo "JSON file $FILES not found"
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
- name: Commit changes if updated
|
git config --global user.name "github-actions[bot]"
|
||||||
run: |
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
git add *.json
|
git diff --exit-code || git commit -am "Updating Dates in affected JSON files."
|
||||||
git diff --cached --quiet || git commit -m "Update JSON dates"
|
|
||||||
|
|
||||||
- name: Push changes
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
run: |
|
|
||||||
git push
|
git push
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
12
CHANGELOG.md
12
CHANGELOG.md
@ -16,6 +16,18 @@ All LXC instances created using this repository come pre-installed with Midnight
|
|||||||
> [!IMPORTANT]
|
> [!IMPORTANT]
|
||||||
Do not break established syntax in this file, as it is automatically updated by a Github Workflow
|
Do not break established syntax in this file, as it is automatically updated by a Github Workflow
|
||||||
|
|
||||||
|
## 2025-01-16
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
### ✨ New Scripts
|
||||||
|
|
||||||
|
- New script: phpIPAM [@bvdberg01](https://github.com/bvdberg01) ([#1503](https://github.com/community-scripts/ProxmoxVE/pull/1503))
|
||||||
|
|
||||||
|
### 🧰 Maintenance
|
||||||
|
|
||||||
|
- [core] Recreate Update JSON Workflow [@michelroegl-brunner](https://github.com/michelroegl-brunner) ([#1523](https://github.com/community-scripts/ProxmoxVE/pull/1523))
|
||||||
|
|
||||||
## 2025-01-15
|
## 2025-01-15
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
49
ct/dotnetaspwebapi.sh
Normal file
49
ct/dotnetaspwebapi.sh
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
source <(curl -s https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/misc/build.func)
|
||||||
|
# Copyright (c) 2021-2025 community-scripts ORG
|
||||||
|
# Author: Kristian Skov
|
||||||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
# Source: https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/linux-nginx?view=aspnetcore-9.0&tabs=linux-ubuntu
|
||||||
|
|
||||||
|
# App Default Values
|
||||||
|
APP="Dotnet ASP Web API"
|
||||||
|
var_tags="web"
|
||||||
|
var_cpu="1"
|
||||||
|
var_ram="1024"
|
||||||
|
var_disk="8"
|
||||||
|
var_os="ubuntu"
|
||||||
|
var_version="24.04"
|
||||||
|
var_unprivileged="0"
|
||||||
|
|
||||||
|
# App Output & Base Settings
|
||||||
|
header_info "$APP"
|
||||||
|
base_settings
|
||||||
|
|
||||||
|
# Core
|
||||||
|
variables
|
||||||
|
color
|
||||||
|
catch_errors
|
||||||
|
|
||||||
|
function update_script() {
|
||||||
|
header_info
|
||||||
|
check_container_storage
|
||||||
|
check_container_resources
|
||||||
|
if [[ ! -d /var/www ]]; then
|
||||||
|
msg_error "No ${APP} Installation Found!"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
msg_info "Updating ${APP} LXC"
|
||||||
|
apt-get update &>/dev/null
|
||||||
|
apt-get -y upgrade &>/dev/null
|
||||||
|
msg_ok "Updated Successfully"
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
start
|
||||||
|
build_container
|
||||||
|
description
|
||||||
|
|
||||||
|
msg_ok "Completed Successfully!\n"
|
||||||
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
||||||
|
echo -e "${INFO}${YW} Access it using the following IP:${CL}"
|
||||||
|
echo -e "${TAB}${GATEWAY}${BGN}${IP}:80${CL}"
|
@ -1,9 +1,12 @@
|
|||||||
import { OperatingSystem } from "@/lib/types";
|
import { OperatingSystem } from "@/lib/types";
|
||||||
import { MessagesSquare, Scroll } from "lucide-react";
|
import { MessagesSquare, Scroll } from "lucide-react";
|
||||||
import { FaDiscord, FaGithub } from "react-icons/fa";
|
import { FaDiscord, FaGithub } from "react-icons/fa";
|
||||||
|
import React from "react";
|
||||||
|
|
||||||
export const basePath = process.env.BASE_PATH;
|
export const basePath = process.env.BASE_PATH;
|
||||||
|
|
||||||
|
const isMobile = typeof window !== "undefined" && window.innerWidth < 640;
|
||||||
|
|
||||||
export const navbarLinks = [
|
export const navbarLinks = [
|
||||||
{
|
{
|
||||||
href: `https://github.com/community-scripts/${basePath}`,
|
href: `https://github.com/community-scripts/${basePath}`,
|
||||||
@ -23,13 +26,15 @@ export const navbarLinks = [
|
|||||||
icon: <Scroll className="h-4 w-4" />,
|
icon: <Scroll className="h-4 w-4" />,
|
||||||
text: "Change Log",
|
text: "Change Log",
|
||||||
},
|
},
|
||||||
{
|
!isMobile
|
||||||
|
? {
|
||||||
href: `https://github.com/community-scripts/${basePath}/discussions`,
|
href: `https://github.com/community-scripts/${basePath}/discussions`,
|
||||||
event: "Discussions",
|
event: "Discussions",
|
||||||
icon: <MessagesSquare className="h-4 w-4 hidden sm:block" />,
|
icon: <MessagesSquare className="h-4 w-4" />,
|
||||||
text: "Discussions",
|
text: "Discussions",
|
||||||
},
|
}
|
||||||
];
|
: null,
|
||||||
|
].filter(Boolean) as { href: string; event: string; icon: React.ReactNode; text: string }[];
|
||||||
|
|
||||||
export const mostPopularScripts = [
|
export const mostPopularScripts = [
|
||||||
"Proxmox VE Post Install",
|
"Proxmox VE Post Install",
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
"moduleResolution": "bundler",
|
"moduleResolution": "bundler",
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"isolatedModules": true,
|
"isolatedModules": true,
|
||||||
"jsx": "preserve",
|
"jsx": "react-jsx",
|
||||||
"incremental": true,
|
"incremental": true,
|
||||||
"plugins": [
|
"plugins": [
|
||||||
{
|
{
|
||||||
@ -27,7 +27,7 @@
|
|||||||
"**/*.ts",
|
"**/*.ts",
|
||||||
"**/*.tsx",
|
"**/*.tsx",
|
||||||
".next/types/**/*.ts",
|
".next/types/**/*.ts",
|
||||||
"next.config.mjs",
|
"next.config.mjs"
|
||||||
],
|
],
|
||||||
"exclude": ["node_modules"]
|
"exclude": ["node_modules"]
|
||||||
}
|
}
|
||||||
|
110
install/dotnetaspwebapi-install.sh
Normal file
110
install/dotnetaspwebapi-install.sh
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Copyright (c) 2021-2025 community-scripts ORG
|
||||||
|
# Author: Kristian Skov
|
||||||
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
||||||
|
|
||||||
|
source /dev/stdin <<< "$FUNCTIONS_FILE_PATH"
|
||||||
|
color
|
||||||
|
verb_ip6
|
||||||
|
catch_errors
|
||||||
|
setting_up_container
|
||||||
|
network_check
|
||||||
|
update_os
|
||||||
|
|
||||||
|
msg_info "Installing Dependencies"
|
||||||
|
$STD apt-get update
|
||||||
|
$STD apt-get install -y \
|
||||||
|
ssh \
|
||||||
|
software-properties-common
|
||||||
|
$STD add-apt-repository -y ppa:dotnet/backports
|
||||||
|
$STD apt-get install -y \
|
||||||
|
dotnet-sdk-9.0 \
|
||||||
|
vsftpd \
|
||||||
|
nginx
|
||||||
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
|
msg_info "Configure Application"
|
||||||
|
var_project_name="default"
|
||||||
|
read -r -p "Type the assembly name of the project: " var_project_name
|
||||||
|
echo "Target assembly: '${var_project_name}'"
|
||||||
|
msg_ok "Application Configured"
|
||||||
|
|
||||||
|
msg_info "Setting up FTP Server"
|
||||||
|
useradd ftpuser
|
||||||
|
FTP_PASS=$(openssl rand -base64 18 | tr -dc 'a-zA-Z0-9' | head -c13)
|
||||||
|
usermod --password $(echo ${FTP_PASS} | openssl passwd -1 -stdin) ftpuser
|
||||||
|
mkdir -p /var/www/html
|
||||||
|
usermod -d /var/www/html ftp
|
||||||
|
usermod -d /var/www/html ftpuser
|
||||||
|
chown ftpuser /var/www/html
|
||||||
|
|
||||||
|
sed -i "s|#write_enable=YES|write_enable=YES|g" /etc/vsftpd.conf
|
||||||
|
sed -i "s|#chroot_local_user=YES|chroot_local_user=NO|g" /etc/vsftpd.conf
|
||||||
|
|
||||||
|
systemctl restart -q vsftpd.service
|
||||||
|
|
||||||
|
{
|
||||||
|
echo "FTP-Credentials"
|
||||||
|
echo "Username: ftpuser"
|
||||||
|
echo "Password: $FTP_PASS"
|
||||||
|
} >> ~/ftp.creds
|
||||||
|
|
||||||
|
msg_ok "FTP server setup completed"
|
||||||
|
|
||||||
|
msg_info "Setting up Nginx Server"
|
||||||
|
rm -f /var/www/html/index.nginx-debian.html
|
||||||
|
|
||||||
|
sed "s/\$var_project_name/$var_project_name/g" >myfile <<'EOF' >/etc/nginx/sites-available/default
|
||||||
|
map $http_connection $connection_upgrade {
|
||||||
|
"~*Upgrade" $http_connection;
|
||||||
|
default keep-alive;
|
||||||
|
}
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name $var_project_name.com *.$var_project_name.com;
|
||||||
|
location / {
|
||||||
|
proxy_pass http://127.0.0.1:5000/;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection $connection_upgrade;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_cache_bypass $http_upgrade;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
systemctl reload nginx
|
||||||
|
msg_ok "Nginx Server Created"
|
||||||
|
|
||||||
|
msg_info "Creating Service"
|
||||||
|
cat <<EOF >/etc/systemd/system/kestrel-aspnetapi.service
|
||||||
|
[Unit]
|
||||||
|
Description=.NET Web API App running on Linux
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
WorkingDirectory=/var/www/html
|
||||||
|
ExecStart=/usr/bin/dotnet /var/www/html/$var_project_name.dll
|
||||||
|
Restart=always
|
||||||
|
# Restart service after 10 seconds if the dotnet service crashes:
|
||||||
|
RestartSec=10
|
||||||
|
KillSignal=SIGINT
|
||||||
|
SyslogIdentifier=dotnet-${var_project_name}
|
||||||
|
User=root
|
||||||
|
Environment=ASPNETCORE_ENVIRONMENT=Production
|
||||||
|
Environment=DOTNET_NOLOGO=true
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
EOF
|
||||||
|
systemctl enable -q --now kestrel-aspnetapi.service
|
||||||
|
msg_ok "Created Service"
|
||||||
|
|
||||||
|
motd_ssh
|
||||||
|
customize
|
||||||
|
|
||||||
|
msg_info "Cleaning up"
|
||||||
|
$STD apt-get -y autoremove
|
||||||
|
$STD apt-get -y autoclean
|
||||||
|
msg_ok "Cleaned"
|
@ -19,7 +19,9 @@ $STD apt-get install -y \
|
|||||||
mc \
|
mc \
|
||||||
mariadb-server \
|
mariadb-server \
|
||||||
apache2 \
|
apache2 \
|
||||||
php8.2-{pdo,mysql,sockets,gmp,ldap,simplexml,json,cli,mbstring,pear,gd,curl}
|
libapache2-mod-php \
|
||||||
|
php8.2 php8.2-{fpm,curl,cli,mysql,gd,intl,imap,apcu,pspell,tidy,xmlrpc,mbstring,gmp,xml,ldap,common,snmp} \
|
||||||
|
php-pear
|
||||||
msg_ok "Installed Dependencies"
|
msg_ok "Installed Dependencies"
|
||||||
|
|
||||||
msg_info "Setting up MariaDB"
|
msg_info "Setting up MariaDB"
|
||||||
|
39
json/dotnetaspwebapi.json
Normal file
39
json/dotnetaspwebapi.json
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
{
|
||||||
|
"name":"Dotnet ASP Web API",
|
||||||
|
"slug":"dotnetaspwebapi",
|
||||||
|
"categories":[
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"date_created":"2025-01-15",
|
||||||
|
"type":"ct",
|
||||||
|
"updateable":true,
|
||||||
|
"privileged":true,
|
||||||
|
"interface_port":80,
|
||||||
|
"documentation":"https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/linux-nginx?view=aspnetcore-9.0&tabs=linux-ubuntu",
|
||||||
|
"website":"https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/linux-nginx?view=aspnetcore-9.0&tabs=linux-ubuntu",
|
||||||
|
"logo":"https://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Microsoft_.NET_logo.svg/456px-Microsoft_.NET_logo.svg.png",
|
||||||
|
"description":"Automatically setup a ASP.NET server up, as well as a FTP server so you can publish to this container from Visual Studio.",
|
||||||
|
"install_methods":[
|
||||||
|
{
|
||||||
|
"type":"default",
|
||||||
|
"script":"ct/dotnetaspwebapi.sh",
|
||||||
|
"resources":{
|
||||||
|
"cpu":1,
|
||||||
|
"ram":1024,
|
||||||
|
"hdd":8,
|
||||||
|
"os":"Ubuntu",
|
||||||
|
"version":"24.04"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"default_credentials":{
|
||||||
|
"username":null,
|
||||||
|
"password":null
|
||||||
|
},
|
||||||
|
"notes":[
|
||||||
|
{
|
||||||
|
"text":"FTP server credentials: `cat ~/ftp.creds`",
|
||||||
|
"type":"info"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -421,6 +421,21 @@ APP=Dockge
|
|||||||
/_____/\____/\___/_/|_|\__, /\___/
|
/_____/\____/\___/_/|_|\__, /\___/
|
||||||
/____/
|
/____/
|
||||||
|
|
||||||
|
### dotnetaspwebapi.sh
|
||||||
|
APP=Dotnet ASP Web API
|
||||||
|
____ __ __ ___ _____ ____ _ __ __
|
||||||
|
/ __ \____ / /_____ ___ / /_ / | / ___// __ \ | | / /__ / /_
|
||||||
|
/ / / / __ \/ __/ __ \/ _ \/ __/ / /| | \__ \/ /_/ / | | /| / / _ \/ __ \
|
||||||
|
/ /_/ / /_/ / /_/ / / / __/ /_ / ___ |___/ / ____/ | |/ |/ / __/ /_/ /
|
||||||
|
/_____/\____/\__/_/ /_/\___/\__/ /_/ |_/____/_/ |__/|__/\___/_.___/
|
||||||
|
|
||||||
|
___ ____ ____
|
||||||
|
/ | / __ \/ _/
|
||||||
|
/ /| | / /_/ // /
|
||||||
|
/ ___ |/ ____// /
|
||||||
|
/_/ |_/_/ /___/
|
||||||
|
|
||||||
|
|
||||||
### emby.sh
|
### emby.sh
|
||||||
APP=Emby
|
APP=Emby
|
||||||
______ __
|
______ __
|
||||||
|
Loading…
Reference in New Issue
Block a user