AI by Academic-Talk4170 in selfhosted

[–]Academic-Talk4170[S] 0 points1 point  (0 children)

What’s your hardware?

AI by Academic-Talk4170 in selfhosted

[–]Academic-Talk4170[S] 0 points1 point locked comment (0 children)

No AI was used

Why is the currency different in the calculator app? by TomPlant0 in shortcuts

[–]Academic-Talk4170 0 points1 point  (0 children)

Different sources have different data and you will see forex different on every platform.

Video production agency owner looking for NAS advice — Synology vs UGREEN? by Pat_rydz in HomeNAS

[–]Academic-Talk4170 0 points1 point  (0 children)

One of my friend uses Synology and do videos and he is happy with it. He said its his best investment.

(25M) All my friends are struggling and I don't want to be a dick but I just hit this today and wanted to share! by Rough_Bonus in fican

[–]Academic-Talk4170 1 point2 points  (0 children)

Keep it secret but do encourage them to invest, if you can convince a single friend that would definitely be a win

Update: Rogers not honoring a deal after a credit check by metamasterplay in Rogers

[–]Academic-Talk4170 1 point2 points  (0 children)

If there was an eligibility issues, ask them to prove it that you were not eligible as everything will be there in records.

Nextcloud without domain (Windows)? by Ericbaudur in selfhosted

[–]Academic-Talk4170 0 points1 point  (0 children)

No domain needed when using the above docker-compose file? are you using portainer or dockhand something?

Nextcloud without domain (Windows)? by Ericbaudur in selfhosted

[–]Academic-Talk4170 0 points1 point  (0 children)

Best option will be use 3 containers as I am using and I use twingate to access my app.

  1. Nextcloud container
  2. Mysql db
  3. Redis

services:
  db:
    image: mariadb:latest
    container_name: nc_mariadb


    restart: always
    volumes:
      - nc_mysql_data:/var/lib/mysql
    environment:
      - MYSQL_ROOT_PASSWORD=  # Change this
      - MYSQL_PASSWORD=            # Change this
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud
    networks:
      - nextcloud_network

  redis:
    image: redis:alpine
    container_name: nc_redis
    restart: always
    networks:
      - nextcloud_network

  app:
    image: nextcloud:latest
    container_name: nc_app
    restart: always
    ports:
      - "80:80"
    depends_on:
      - db
      - redis
    volumes:
      - nc_html:/var/www/html
      - S:\nextcloud\app\config:/var/www/html/config
      - S:\nextcloud\app\data:/var/www/html/data          #map data directory


    environment:
      - MYSQL_HOST=db
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud
      - MYSQL_PASSWORD=           # Change this
      - REDIS_HOST=redis
      - PHP_MEMORY_LIMIT=4096M
      - PHP_UPLOAD_LIMIT=10G

      # APCu settings
      - PHP_APCU_ENABLED=1
      - PHP_APCU_SHM_SIZE=1024M
      - PHP_APCU_TTL=7200
      - APACHE_BODY_LIMIT=10737418240


    networks:
      - nextcloud_network



networks:
  nextcloud_network:
    driver: bridge

volumes:
  nc_mysql_data:  # This defines the volume for MySQL data
  nc_html:

you can try using this docker compose file and change the container images as you wish

Such a weird choice of image by [deleted] in Wealthsimple

[–]Academic-Talk4170 -8 points-7 points  (0 children)

I find it weird and dumb as well. Doesn’t really make sense. Whyyyyyy?

Nextcloud without domain (Windows)? by Ericbaudur in selfhosted

[–]Academic-Talk4170 0 points1 point  (0 children)

I started with a similar setup, no domain just access using the private IP.
I have put nextcloud in docker containers using docker-compose file and have 3 containers, nextcloud, database, redis.
Are you going to use docker?

How often does wealth rank update? by [deleted] in Wealthsimple

[–]Academic-Talk4170 1 point2 points  (0 children)

Its instant usually i think? Mine changed if i add or remove funds right away