-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
β Have you read and understood the above guidelines?
yes
π What is the name of the script you are using?
Spoolman
π What was the exact command used to execute the script?
bash -c "$(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main/ct/spoolman.sh)"
βοΈ What settings are you using?
- Default Settings
- Advanced Settings
π₯οΈ Which Linux distribution are you using?
Debian 12
π Provide a clear and concise description of the issue.
Service Unit File doesn't use the host and port values from the .env
π Steps to reproduce the issue.
Step 1: Install Spoolman
Step 2: Change .env file to set the SPOOLMAN_PORT to 80
Step 3: Restart service with "systemctl restart spoolman.service"
β Paste the full error output (if available).
service restarts, but it not accessable on port 80 as expected
πΌοΈ Additional context (optional).
Suggest changing the service creation from:
ExecStart=uvicorn spoolman.main:app --host 0.0.0.0 --port 7912
to:
ExecStart=uvicorn spoolman.main:app --host "${SPOOLMAN_HOST}" --port "${SPOOLMAN_PORT}"
during install
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working