All your Organizr files are now installed at /var/www/websites/roxinsocks.com/
Permissions & Access
Set the permission to your path, so that Organizr can write to it by running chown -R www-data:www-data /var/www/websites/roxinsocks.com/
For external access and functionality, edit your nginx sites-enabled config file for your domain (nano /etc/nginx/sites-enabled/roxinsocks.com), and be sure the root is set correctly in the server block. This will tell nginx where to look for organizr, when you navigate to your domain:
You may need to change the path to the socket depending on what version of PHP you installed
3. Navigate to that path locally using your web browser and the host's local ip address. http://localhost or http://192.168.1.### You should be able to login and establish your admin account.
Helm
Our helm chart is maintained by the guys over at k8s@home. This uses the official docker container.
Read through the values.yaml file either in the github repository or via helm commands
Deploy a named release with your override values.yaml file
Example Commands
helm repo add k8s-at-home https://k8s-at-home.com/charts
# these next 2 lines are convenience lines to build a full values file for modification.
# You can construct your own overrides as you see fit.
helm show values k8s-at-home/organizr | \
sed '1,2d;/service/,+1d' > values.yaml
helm show values k8s-at-home/media-common | \
sed '1d;/image:/,+5d;s/port: ""/port: 80/;s/^/ /' >> values.yaml
vi values.yaml # modify as needed
helm install organizr k8s-at-home/organizr --values values.yaml