Search
You can find the results of your search below.
Matching pagenames:
Fulltext results:
- Nextcloud Container @docker_notes
- ation:migrate]] Nextcloud to Docker. * uid: www-data / 33, gid: www-data / 33. This seems to be Debian standard. Alpine linux seems to use 82 for www-data. Just stick with uid/gid as per the image suppli... and ignore the names. * ''%%docker exec -u www-data nextcloud-app-1 php /var/www/html/cron.php%%'' ru
- Docker nginx / php notes @docker_notes
- m'. client_max_body_size 1m; # Sendfile copies data between one FD and other from within the kernel, ... rite operation. If the value is false, then the ; data is written directly into the file descriptor. It ... ng is a mechanism for controlling how much output data ; (excluding headers and cookies) PHP should keep internally before pushing that ; data to the client. If your application's output excee
- Back-up Server Old Setup @home_server:home_server_setup:other_services
- me as "verbose" above, but controls the amount of data sent to the # logfile, if one is being used. The ... t to 4 # loglevel 3 # If you enable this, data will be written to the file you specify. The # amount of data written is controlled by the "loglevel" parameter... oving it after. This should ensure consistency of data in some special # cases # # LVM snapshot(s) size
- Web Server setup @home_server
- ocean.com/community/tutorials/how-to-move-a-mysql-data-directory-to-a-new-location-on-ubuntu-18-04|MySQL (Maria) database data directory can also be moved]], however the databa... initial setup to merit this move. Also move mysql data directory [[https://www.digitalocean.com/community/tutorials/how-to-change-a-mysql-data-directory-to-a-new-location-using-a-symlink|How t
- Reverse Proxy Server @docker_notes
- sudo chown baumkp:baumkp traefik cd traefik mkdir data cd data touch acme.json chmod 600 acme.json touch traefik.yml cd ..</code> My traefik.yml locatation: ''/home/docker_store/traefik/data/traefik.yml''. The current TechnoTim one [[https:... \\ ====Generate and Install Godaddy DNS Challenge Data==== Godaddy changed their policies circa April 20
- dokuwiki setup notes @home_server
- -ups placed here: ''%%'/media/disk1/KarlData/Karl Data 2/dokuwiki_backups/'%%'' and named ''KPtreeWiki-b... g. ''%%sudo tar zcpfv '/media/disk1/KarlData/Karl Data 2/dokuwiki_backups/KptreeWiki-backup_20220710.tar... ipts/dokuwikicleanup.sh /home/shared/www/dokuwiki/data 300%%'' =====dokuwiki VM setup===== ====master d... |Setting up file permissions]]. ''sudo chown www-data:www-data -R /home/shared/www/dokuwiki'' will make
- My Home IT Setup @home_server:home_server_setup
- eous disks, however a modern 3.5" hard disk has a data bandwidth similar to a 1Gb/s Ethernet, so the tra... y main system drive, a NVM SSD for my system main data drive and 6TB and 10T hard disks for main data storage + 1 extra 10TB HD for a parity hard disk with Snapraid. All the spinning data hard disks are programmed to spin down after 20 m
- Rsync @home_server:home_server_setup:other_services
- _kptree.net/' cmd="rsync -ptoguv --chown=root:www-data --chmod=a+rwx,g+rwx,o-wx" $cmd ${workpath}/styles... |''-z''| ''%%--%%compress'' |compress file data during the transfer| |''-v''| ''%%--%%verbose'' ... ies from one location to another while minimizing data transfer by using fast incremental file transfers... ing systems.) The first time, rsync sends all the data over the network to your backup machine. The bene
- Docker mailserver @docker_notes
- de> *''SELECT * FROM table_name;'' to query all data from a table. ====virtual_domains==== This tab... ELETE CASCADE );</code> ====sqlite example test data==== The following test dat acan be used to test the data returns from postfix. <code sql>REPLACE INTO vir... le.org', 'john@example.org');</code> This sample data should be deleted before using the mailserver liv
- KPTree Torrent VM Setup @home_server
- ''sudo systemctl status mysql'' Next move MySQL Data Directory Check current location of MySQL data directory: ''mysql -u root -p'' and then at mysql> ''se... SQL : ''sudo systemctl stop mysql'' My the mysql data directory to your preferred location: ''sudo mv /... docker create --name=kodi-headless \ -v <path to data>:/config/.kodi \ -e PGID=<gid> -e PUID=<uid> \ -e
- KPTree - MSWindows Setup @home_server
- asically do not store and main archive or working data on the local windows machines anymore. I try to c... top iTunes running -If moving an exiting iTunes data directory first time, copy ''C:\Users\doej\Music\... columns the following feature can be used. Menu: Data : Text to Columns =====List Windows files and directories into MSExcel===== The menu : Data : Get Data : From File : From Folder presents a d
- Router Miscellaneous @linux_router
- cker run --cap-drop ALL -it -v /home/baumkp/algo:/data --name=algo mutemule/algo" to create and run ima... d, Allocate a pseudo-TTY] -v /home/baumkp/algo:/data [bind mount a volume] --name=algo [give cont... > Name Port Protocols Description ftp-data 20 {tcp, udp, sctp} File Transfer [Default Data] ftp 21 {tcp, udp, sctp} File Transfer Proto
- Basic Netfilter Function Block Diagram @linux_router
- mean a helper connection, as is the case with FTP data transmission connections, or it could be ICMP res... dditional overhead to that in a standard Ethernet data field. The maximum length (MTU) of the data field of a standard Ethernet data field is limited 1500 bytes. A standard PPPoE connection has an addi
- Docker @docker_notes
- nd is: <code bash> docker volume create portainer_data docker run -d -p 9443:9443 --name=portainer --res... cker.sock:/var/run/docker.sock \ -v portainer_data:/data \ portainer/portainer-ce:latest </code> Notes: *The port 8000 (-p 8000:8000) is not normall... er, usually root| |''%%docker exec -it --user www-data CONTAINER bash%%'' | Run bash shell in a containe
- Docker-Compose @docker_notes
- lumes in Docker Compose]]) Example: Defines web_data volume: <code bash> docker volume create --driver... "/var/opt/my_website/dist" \ --opt o=bind web_data </code> docker-compose.yml file with a named volume web_data defined externally: <code yaml> version '3' volumes: web_data: external: true services: app: image: