-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
14,922 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Coolify | ||
|
||
Coolify is a tool to help you manage your projects. It is a collection of scripts that help you to create, build, test, and deploy your projects. | ||
|
||
```bash | ||
curl -fsSL https://cdn.coollabs.io/coolify/install.sh | bash | ||
``` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
TZ=America/Sao_Paulo |
0
docker-compose/homarr/README.md → docker-compose/homepage/README.md
100644 → 100755
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
services: | ||
homepage: | ||
image: ghcr.io/gethomepage/homepage:latest | ||
container_name: homepage | ||
ports: | ||
- 3000:3000 | ||
volumes: | ||
- ../../homepage:/app/config # Make sure your local config directory exists | ||
- ../../homepage/images:/app/public/images | ||
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
TZ=America/Sao_Paulo | ||
PUID=1000 | ||
PGID=1000 | ||
|
||
POSTGRES_HOST=nextcloud-postgres | ||
POSTGRES_DB= | ||
POSTGRES_USER= | ||
POSTGRES_PASSWORD= | ||
POSTGRES_IPV4_ADDRESS=172.27.1.3 | ||
|
||
NEXTCLOUD_TRUSTED_DOMAIN=ydooc.me 0.0.0.0 localhost | ||
NEXTCLOUD_SUBNET=172.27.1.0/24 | ||
NEXTCLOUD_IPV4_ADDRESS=172.27.1.2 | ||
|
||
REDIS_HOST=nextcloud-redis | ||
#REDIS_HOST_PASSWORD= | ||
#REDIS_IPV4_ADDRESS=172.27.1.4 | ||
|
||
CRON_IPV4_ADDRESS=172.27.1.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
# Nextcloud | ||
|
||
Configurations to be made after installation | ||
|
||
### Connect to the container and run the following commands to update the container and install `nano`: | ||
|
||
```bash | ||
apt update | ||
``` | ||
|
||
```bash | ||
apt install nano | ||
``` | ||
|
||
### Change PHP memory limit | ||
|
||
```bash | ||
nano .htaccess | ||
``` | ||
|
||
Add the following to the top of the `.htaccess` in your NextCloud container volume in `/var/www/html`: | ||
|
||
```bash | ||
php_value upload_max_filesize 16G | ||
php_value post_max_size 16G | ||
php_value max_input_time 3600 | ||
php_value max_execution_time 3600 | ||
php_value memory_limit 2048M | ||
``` | ||
|
||
### Add trusted domains | ||
|
||
Now we'll edit the config.php file with: | ||
|
||
```bash | ||
nano config/config.php | ||
``` | ||
|
||
Scroll down until you find the 'trusted_domains' section: | ||
|
||
```bash | ||
'trusted_domains' => | ||
array ( | ||
0 => 'cloud.ydooc.me', | ||
), | ||
``` | ||
|
||
Then scroll down to the bottom of the file where you should see: | ||
|
||
```bash | ||
'installed' => true, | ||
``` | ||
|
||
And add the following before the last `);`: | ||
|
||
```bash | ||
'overwriteprotocol' => 'https', | ||
'default_phone_region' => 'BR', | ||
'enable_previews' => true, | ||
``` | ||
|
||
### Fix CallDAV | ||
|
||
Now we'll edit the 000-default.conf file with: | ||
|
||
```bash | ||
nano /etc/apache2/sites-enabled/000-default.conf | ||
``` | ||
|
||
Scroll to the end of the file and add the following after the `</VirtualHost>`: | ||
|
||
```bash | ||
Redirect 301 /.well-known/carddav https://ydooc.me/remote.php/dav | ||
Redirect 301 /.well-known/caldav https://cloud.ydooc.me/remote.php/dav | ||
Redirect 301 /.well-known/webdav https://cloud.ydooc.me/remote.php/dav | ||
Redirect 301 /.well-known/webfinger https://cloud.ydooc.me/index.php | ||
Redirect 301 /.well-known/nodeinfo https://cloud.ydooc.me/index.php | ||
``` | ||
|
||
### Monitoring | ||
|
||
If you are using Uptime Kuma to monitor your Nextcloud instance, you can use the following settings: | ||
|
||
1. URL: `https://cloud.ydooc.me/cron.php` | ||
2. Heartbeat: `180` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
version: "3.8" | ||
|
||
volumes: | ||
ntfy: | ||
name: ntfy | ||
|
||
networks: | ||
ntfy: | ||
name: ntfy | ||
|
||
services: | ||
ntfy: | ||
container_name: ntfy | ||
hostname: ntfy | ||
image: ghcr.io/maybe-finance/maybe:latest | ||
volumes: | ||
- ${DATA_DIR}:/rails/storage | ||
ports: | ||
- 3000:3000 | ||
restart: unless-stopped | ||
environment: | ||
SELF_HOSTING_ENABLED: "true" | ||
RAILS_FORCE_SSL: "false" | ||
RAILS_ASSUME_SSL: "false" | ||
GOOD_JOB_EXECUTION_MODE: async | ||
SECRET_KEY_BASE: ${SECRET_KEY_BASE} | ||
DB_HOST: maybe-postgres | ||
POSTGRES_DB: ${POSTGRES_DB} | ||
POSTGRES_USER: ${POSTGRES_USER} | ||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} | ||
SYNTH_API_KEY: ${SYNTH_API_KEY} | ||
networks: | ||
- maybe | ||
depends_on: | ||
maybe-postgres: | ||
condition: service_healthy | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
TZ= | ||
PUID= | ||
PGID= | ||
DATA_DIR= | ||
DATA_DIR= | ||
DATA_DIR=/uptime-kuma | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Homepage | ||
|
||
`Homepage` is a self-hosted dashboard solution for centralizing and organizing data and information. | ||
|
||
To `create` or `update` a new Proxmox VE Homepage LXC, run the command below in the `Proxmox VE Shell`. | ||
|
||
```bash | ||
bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/ct/homepage.sh)" | ||
``` | ||
|
||
> To customize, use configuration files (bookmarks.yaml, services.yaml, widgets.yaml and settings.yaml) located in `/homepage` and paste at `/opt/homepage/config` | ||
> The service will be available at: `http://<IP>:3000` | ||
> Use a YAML validator to check the syntax of the configuration files: [YAML Validator](https://codebeautify.org/yaml-validator) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
- Developer: | ||
- Github: | ||
- abbr: GH | ||
href: https://github.com/ | ||
|
||
- Social: | ||
- Reddit: | ||
- icon: reddit.png | ||
href: https://reddit.com/ | ||
description: The front page of the internet | ||
|
||
- Entertainment: | ||
- YouTube: | ||
- abbr: YT | ||
href: https://youtube.com/ |
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
# For configuration options and examples, please see: | ||
# https://gethomepage.dev/latest/configs/docker/ | ||
|
||
# my-docker: | ||
# host: 127.0.0.1 | ||
# port: 2375 | ||
|
||
# my-docker: | ||
# socket: /var/run/docker.sock |
Empty file.
Oops, something went wrong.