当前位置: 首页 > news >正文

济南网站建设公司推荐html网页设计期末作业

济南网站建设公司推荐,html网页设计期末作业,石家庄网站模板建站,大型门户网站建设本文是为了解决网友 赵云遇到的问题#xff0c;顺便折腾的。虽然软件跑起来了#xff0c;但是他遇到的问题#xff0c;超出了老苏的认知。当然最终问题还是得到了解决#xff0c;不过与 LibrePhotos 无关#xff1b; 什么是 LibrePhotos ? LibrePhotos 是一个自托管的开源… 本文是为了解决网友 赵云遇到的问题顺便折腾的。虽然软件跑起来了但是他遇到的问题超出了老苏的认知。当然最终问题还是得到了解决不过与 LibrePhotos 无关 什么是 LibrePhotos ? LibrePhotos 是一个自托管的开源照片管理和共享平台。它旨在提供一个类似于商业化照片服务的功能但用户可以完全控制自己的数据并在自己的服务器上存储照片。 什么是 UhuruPhotos UhuruPhotos 是一款功能齐全使用 Jetpack Compose和最新的 android 技术编写的 LibrePhotos android 客户端。它借鉴了 Google Photos 的很多想法旨在成为功能齐全的相册替代品包括离线支持、备份和同步等功能。 安装 在群晖上以 Docker 方式安装。 docker-compose.yml 将下面的内容保存为 docker-compose.yml 文件 源文件来自https://github.com/LibrePhotos/librephotos-docker/blob/main/docker-compose.yml老苏只修改了 container_name # DO NOT EDIT # The .env file has everything you need to edit. # Run options: # 1. Use prebuilt images (preferred method): # run cmd: docker-compose up -d # 2. Build images on your own machine: # build cmd: COMPOSE_DOCKER_CLI_BUILD1 DOCKER_BUILDKIT1 docker-compose build # run cmd: docker-compose up -dversion: 3.8 services:proxy:image: reallibrephotos/librephotos-proxy:${tag}container_name: librephotos-proxyrestart: unless-stoppedvolumes:- ${scanDirectory}:/data- ${data}/protected_media:/protected_mediaports:- ${httpPort}:80depends_on:- backend- frontenddb:image: postgres:13container_name: librephotos-dbrestart: unless-stoppedenvironment:- POSTGRES_USER${dbUser}- POSTGRES_PASSWORD${dbPass}- POSTGRES_DB${dbName}volumes:- ${data}/db:/var/lib/postgresql/datacommand: postgres -c fsyncoff -c synchronous_commitoff -c full_page_writesoff -c random_page_cost1.0healthcheck:test: psql -U ${dbUser} -d ${dbName} -c SELECT 1;interval: 5stimeout: 5sretries: 5frontend:image: reallibrephotos/librephotos-frontend:${tag}container_name: librephotos-frontendrestart: unless-stoppedbackend:image: reallibrephotos/librephotos:${tag}container_name: librephotos-backendrestart: unless-stoppedvolumes:- ${scanDirectory}:/data- ${data}/protected_media:/protected_media- ${data}/logs:/logs- ${data}/cache:/root/.cacheenvironment:- SECRET_KEY${shhhhKey:-}- BACKEND_HOSTbackend- ADMIN_EMAIL${adminEmail:-}- ADMIN_USERNAME${userName:-}- ADMIN_PASSWORD${userPass:-}- DB_BACKENDpostgresql- DB_NAME${dbName}- DB_USER${dbUser}- DB_PASS${dbPass}- DB_HOST${dbHost}- DB_PORT5432- MAPBOX_API_KEY${mapApiKey:-}- WEB_CONCURRENCY${gunniWorkers:-1}- SKIP_PATTERNS${skipPatterns:-}- ALLOW_UPLOAD${allowUpload:-false}- CSRF_TRUSTED_ORIGINS${csrfTrustedOrigins:-}- DEBUG0- HEAVYWEIGHT_PROCESS${HEAVYWEIGHT_PROCESS:-}depends_on:db:condition: service_healthy一共用到了 4 个镜像其中 reallibrephotos/librephotos-proxy 反向代理服务reallibrephotos/librephotos后端服务reallibrephotos/librephotos-frontend 前端页面 以上 3 个镜像 latest 对应的版本均为 2023w31 postgres:13数据库服务 env.txt 将下面的内容保存为 env.txt 文件 源文件来自https://github.com/LibrePhotos/librephotos-docker/blob/main/librephotos.env请根据自己的环境进行修改 # This file contains all the things you need to change to set up your Libre Photos. # There are a few items that must be set for it to work such as the location of your photos. # After the mandatory entries there are some optional ones that you may set. # Start of mandatory changes. # Location of your photos. scanDirectory./librephotos/pictures# Internal data of LibrePhotos data./librephotos/data# ------------------------------------------------------------------------------------------------# Wow, we are at the optional now. Pretty easy so far. You do not have to change any of the below.# Set this value if you have a custom domain name. This allows uploads and django-admin access. If you do not have a custom domain name, leave this blank. csrfTrustedOrigins#What port should Libre Photos be accessed at (Default 3000) httpPort3068# What branch should we install the latest weekly build or the development branch (dev) taglatest# Number of workers, which take care of the request to the api. This setting can dramatically affect the ram usage. # A positive integer generally in the 2-4 x $(NUM_CORES) range. # You’ll want to vary this a bit to find the best for your particular workload. # Each worker needs 800MB of RAM. Change at your own will. Default is 2. gunniWorkers2# You can set the database name. Did you know Libre Photos was forked from OwnPhotos? dbNamelibrephotos# Here you can change the user name for the database. dbUserdocker# The password used by the database. dbPassAaAa1234# Default minimum rating to interpret as favorited. This default value is used when creating a new user. # Users can change this in their settings (Dashboards Library). DEFAULT_FAVORITE_MIN_RATING4# Database host. Only change this if you want to use your own existing Postgres server. If using your own server, you can remove the db container from docker-compose.yml. If youre changing the name of the DBs container name (DB_CONT_NAME further down), you need to set this variable to match that name too. dbHostdb# Set the names of the docker containers to your own entries. Or dont, Im not your dad. # Changing these will require you to make rename to rename the services, and start the system with your chosen docker-compose up -d invocation again. # Note that changing the DB_CONT_NAME will also need you to set the dbHost variable to the same value. DB_CONT_NAMEdb BACKEND_CONT_NAMEbackend FRONTEND_CONT_NAMEfrontend PROXY_CONT_NAMEproxy PGADMIN_CONT_NAMEpgadmin # ---------------------------------------------------------------------------------------------# If you are not a developer ignore the following parameters: you will never need them.# Where shall we store the backend and frontend code files. codedir./librephotos/code# Location for pgAdmin pgAdminLocation./librephotos/pgadmin相比源文件老苏修改了 3处 scanDirectory从 ./librephotos/pictures 修改为了 ./picturesdata从 ./librephotos/data 修改为了 ./datahttpPort从 3000 修改为了 3068这个只要不冲突就行 其他参数除了 dbPass 可以按需要修改外其他的直接用默认值就可以除非你清楚每个参数的用途 如果执行时遇到下面的错误请用 UTF-8 格式保存 env.txt 文件 然后执行下面的命令 # 新建文件夹 librephotos 和 子目录 mkdir -p /volume1/docker/librephotos/{data/{cache,db,logs,protected_media},pictures}# 进入 librephotos 目录 cd /volume1/docker/librephotos# 将 docker-compose.yml 和 env.txt 放入当前目录# 一键启动 docker-compose --env-file env.txt up -d目录结构 运行 在浏览器中输入 http://群晖IP:3068 第一次会看到注册页面 然后需要登录 登录成功后的主界面 需要点 Edit User 按钮来设置路径直接点击下面的 data 或者直接输入 /data点 Save 保存即可 右下角会提示开始扫描 鼠标移到右上角的红点可以看到照片处理进度 变成绿色时表示已处理完成 虽然支持 AI但期望值不要太高了 android 客户端 这是一个第三方的移动客户端下载地址https://github.com/savvasdalkitsis/uhuruphotos-android 选择右侧的 Manage media on mypersonal cloud 输入服务器地址、账号和密码 设置 Allow允许通知 从 Media without date 分类中查看 虽然还处于早期阶段但它已经具备了很多功能例如与 LibrePhotos 服务器定期后台同步等 参考文档 LibrePhotos/librephotos: Self hosted alternative to Google Photos 地址https://github.com/LibrePhotos/librephotos LibrePhotos/librephotos-docker 地址https://github.com/LibrePhotos/librephotos-docker Docker | LibrePhotos 地址https://docs.librephotos.com/docs/installation/standard-install/ UhuruPhotos. A LibrePhotos android client : selfhosted 地址https://www.reddit.com/r/selfhosted/comments/ui5xwi/uhuruphotos_a_librephotos_android_client/ savvasdalkitsis/uhuruphotos-android: A LibrePhotos android client written using Jetpack Compose and all the latest Android technologies 地址https://github.com/savvasdalkitsis/uhuruphotos-android
http://www.zqtcl.cn/news/446129/

相关文章:

  • asp.net做电商网站设计徐州做网站费用
  • 网站怎么发布做微商wordpress 主页显示多图
  • 国外做宠物用品的网站安徽网新科技有限公司官网
  • 辣条类网站建设规划书南阳网站推广优化公司
  • 帝国网站做地域标签seo关键词排名查询
  • 西安网站建设xs029免费代理ip最新
  • 网站建设不挣钱海盐建设局网站
  • 潍坊做网站张家口最近一个月的热点事件
  • 套模板的网站多少钱公司付的网站费怎么做分录
  • 做ps找图的网站有哪些响应式设计是什么意思
  • 家教网站建设的推广猪八戒网站做私活赚钱吗
  • 男女做那种的视频网站asp.net做网站怎么样
  • 给企业做网站怎么收钱郑州网站顾问
  • readme.md做网站设计网页的快捷网站
  • 做双语网站用什么cms系统好百度后台管理
  • 什么网站可以做试卷企业的oa管理系统
  • 经典网站模板自己做pc网站建设
  • 网站有源码之后怎么建设网站河北加工活外发加工网
  • 什么网站可以做自媒体外包小程序
  • 建网站_网站内容怎么做网络营销的广告形式
  • 静态网站怎么做留言板关键词有哪些
  • 开发软件自学步骤朝阳seo推广
  • Wordpress有用么网络推广seo怎么做
  • 企业做网站的注意事项深圳市建网站
  • 代做网站关键词怎么自创网页
  • 网站建设资金申请报告深圳物流公司收费标准
  • 全能企业网站管理系统做教案比较好的网站
  • 昆明做网站竞价单页营销型网站建设
  • 网站注销备案查询厦门好的做网站公司
  • 大学生兼职网站做ppt数字化营销模式及特点