diff --git a/DevOps/Helm/Learn-by-Krukov/01-base-helm.md b/DevOps/Helm/Learn-by-Krukov/01-base-helm.md index 3db649e..5ccdb7b 100644 --- a/DevOps/Helm/Learn-by-Krukov/01-base-helm.md +++ b/DevOps/Helm/Learn-by-Krukov/01-base-helm.md @@ -2,7 +2,7 @@ title: 01-base-helm description: published: true -date: 2023-11-09T15:06:22.191Z +date: 2023-11-09T15:06:26.646Z tags: helm editor: markdown dateCreated: 2023-11-08T08:24:36.599Z diff --git a/DevOps/Helm/Learn-by-Krukov/02-video-app-metadata.md b/DevOps/Helm/Learn-by-Krukov/02-video-app-metadata.md index 98f7265..f136658 100644 --- a/DevOps/Helm/Learn-by-Krukov/02-video-app-metadata.md +++ b/DevOps/Helm/Learn-by-Krukov/02-video-app-metadata.md @@ -2,7 +2,7 @@ title: 02-video-app-metadata description: published: true -date: 2023-11-09T10:02:30.373Z +date: 2023-11-09T10:02:36.449Z tags: editor: markdown dateCreated: 2023-11-08T10:42:51.395Z diff --git a/DevOps/Helm/Learn-by-Krukov/03-video-spec.md b/DevOps/Helm/Learn-by-Krukov/03-video-spec.md index 7dd3d13..4552e62 100644 --- a/DevOps/Helm/Learn-by-Krukov/03-video-spec.md +++ b/DevOps/Helm/Learn-by-Krukov/03-video-spec.md @@ -2,7 +2,7 @@ title: 03-video-spec description: published: true -date: 2023-11-09T14:12:51.136Z +date: 2023-11-09T14:12:57.049Z tags: helm editor: markdown dateCreated: 2023-11-09T10:06:13.204Z diff --git a/DevOps/Helm/Learn-by-Krukov/04-video-svc-ingress.md b/DevOps/Helm/Learn-by-Krukov/04-video-svc-ingress.md index ce70fa7..b9e8ef5 100644 --- a/DevOps/Helm/Learn-by-Krukov/04-video-svc-ingress.md +++ b/DevOps/Helm/Learn-by-Krukov/04-video-svc-ingress.md @@ -2,7 +2,7 @@ title: 04-video-svc-ingress description: published: true -date: 2023-11-09T14:58:52.878Z +date: 2023-11-09T14:58:58.607Z tags: editor: markdown dateCreated: 2023-11-09T14:11:37.963Z diff --git a/DevOps/Helm/Learn-by-Krukov/05-video-cm.md b/DevOps/Helm/Learn-by-Krukov/05-video-cm.md index 26b64c7..da2d268 100644 --- a/DevOps/Helm/Learn-by-Krukov/05-video-cm.md +++ b/DevOps/Helm/Learn-by-Krukov/05-video-cm.md @@ -2,7 +2,7 @@ title: 05-video-cm description: published: true -date: 2023-11-09T15:05:32.795Z +date: 2023-11-09T15:05:38.914Z tags: editor: markdown dateCreated: 2023-11-09T15:05:32.795Z diff --git a/DevOps/Helm/Learn-by-Krukov/06-video-final.md b/DevOps/Helm/Learn-by-Krukov/06-video-final.md index db36f01..dc16485 100644 --- a/DevOps/Helm/Learn-by-Krukov/06-video-final.md +++ b/DevOps/Helm/Learn-by-Krukov/06-video-final.md @@ -2,7 +2,7 @@ title: 06-video-final description: published: true -date: 2023-11-09T15:17:21.129Z +date: 2023-11-09T15:17:27.035Z tags: editor: markdown dateCreated: 2023-11-09T15:17:21.129Z diff --git a/DevOps/Helm/Learn-by-Krukov/manifests/deployment-test.yaml b/DevOps/Helm/Learn-by-Krukov/manifests/deployment-test.yaml new file mode 100644 index 0000000..5b3357a --- /dev/null +++ b/DevOps/Helm/Learn-by-Krukov/manifests/deployment-test.yaml @@ -0,0 +1,60 @@ +--- +kind: Deployment +apiVersion: apps/v1 +metadata: + name: openresty + labels: + k8s-app: openresty + annotations: + reloader.stakater.com/auto: "true" + configmap.reloader.stakater.com/reload: "openresty" +spec: + replicas: 2 + revisionHistoryLimit: 3 + selector: + matchLabels: + k8s-app: openresty + template: + metadata: + labels: + k8s-app: openresty + spec: + containers: + - name: openresty + image: openresty/openresty:centos-rpm + imagePullPolicy: IfNotPresent + ports: + - containerPort: 80 + name: http + readinessProbe: + httpGet: + path: /index.html + port: http + initialDelaySeconds: 5 + periodSeconds: 15 + livenessProbe: + httpGet: + path: /index.html + port: http + initialDelaySeconds: 5 + periodSeconds: 15 + timeoutSeconds: 5 + resources: + limits: + cpu: "0.2" + memory: "400Mi" + requests: + cpu: "0.1" + memory: "200Mi" + volumeMounts: + - name: html + mountPath: /usr/local/openresty/nginx/html/ + - name: config + mountPath: /etc/nginx/conf.d/ + volumes: + - name: html + configMap: + name: openresty-html + - name: config + configMap: + name: openresty-conf \ No newline at end of file diff --git a/DevOps/Helm/Learn-by-Krukov/manifests/deployment.yaml b/DevOps/Helm/Learn-by-Krukov/manifests/deployment.yaml new file mode 100644 index 0000000..5b3357a --- /dev/null +++ b/DevOps/Helm/Learn-by-Krukov/manifests/deployment.yaml @@ -0,0 +1,60 @@ +--- +kind: Deployment +apiVersion: apps/v1 +metadata: + name: openresty + labels: + k8s-app: openresty + annotations: + reloader.stakater.com/auto: "true" + configmap.reloader.stakater.com/reload: "openresty" +spec: + replicas: 2 + revisionHistoryLimit: 3 + selector: + matchLabels: + k8s-app: openresty + template: + metadata: + labels: + k8s-app: openresty + spec: + containers: + - name: openresty + image: openresty/openresty:centos-rpm + imagePullPolicy: IfNotPresent + ports: + - containerPort: 80 + name: http + readinessProbe: + httpGet: + path: /index.html + port: http + initialDelaySeconds: 5 + periodSeconds: 15 + livenessProbe: + httpGet: + path: /index.html + port: http + initialDelaySeconds: 5 + periodSeconds: 15 + timeoutSeconds: 5 + resources: + limits: + cpu: "0.2" + memory: "400Mi" + requests: + cpu: "0.1" + memory: "200Mi" + volumeMounts: + - name: html + mountPath: /usr/local/openresty/nginx/html/ + - name: config + mountPath: /etc/nginx/conf.d/ + volumes: + - name: html + configMap: + name: openresty-html + - name: config + configMap: + name: openresty-conf \ No newline at end of file diff --git a/DevOps/Kubernetes/Helm/manifests/DevOps/Kubernetes/Helm/manifests/deployment.yaml b/DevOps/Kubernetes/Helm/manifests/DevOps/Kubernetes/Helm/manifests/deployment.yaml new file mode 100644 index 0000000..5b3357a --- /dev/null +++ b/DevOps/Kubernetes/Helm/manifests/DevOps/Kubernetes/Helm/manifests/deployment.yaml @@ -0,0 +1,60 @@ +--- +kind: Deployment +apiVersion: apps/v1 +metadata: + name: openresty + labels: + k8s-app: openresty + annotations: + reloader.stakater.com/auto: "true" + configmap.reloader.stakater.com/reload: "openresty" +spec: + replicas: 2 + revisionHistoryLimit: 3 + selector: + matchLabels: + k8s-app: openresty + template: + metadata: + labels: + k8s-app: openresty + spec: + containers: + - name: openresty + image: openresty/openresty:centos-rpm + imagePullPolicy: IfNotPresent + ports: + - containerPort: 80 + name: http + readinessProbe: + httpGet: + path: /index.html + port: http + initialDelaySeconds: 5 + periodSeconds: 15 + livenessProbe: + httpGet: + path: /index.html + port: http + initialDelaySeconds: 5 + periodSeconds: 15 + timeoutSeconds: 5 + resources: + limits: + cpu: "0.2" + memory: "400Mi" + requests: + cpu: "0.1" + memory: "200Mi" + volumeMounts: + - name: html + mountPath: /usr/local/openresty/nginx/html/ + - name: config + mountPath: /etc/nginx/conf.d/ + volumes: + - name: html + configMap: + name: openresty-html + - name: config + configMap: + name: openresty-conf \ No newline at end of file diff --git a/DevOps/Kubernetes/bash-completion.html b/DevOps/Kubernetes/bash-completion.html index c3169a2..e70b100 100644 --- a/DevOps/Kubernetes/bash-completion.html +++ b/DevOps/Kubernetes/bash-completion.html @@ -2,7 +2,7 @@ title: bash-completion для kubectl description: published: true -date: 2023-12-26T10:23:32.800Z +date: 2024-07-09T09:49:55.778Z tags: bash, kubectl editor: ckeditor dateCreated: 2023-11-08T08:53:22.629Z diff --git a/DevOps/attachments/bash-comp1.png b/DevOps/attachments/bash-comp1.png new file mode 100644 index 0000000..d345a06 Binary files /dev/null and b/DevOps/attachments/bash-comp1.png differ diff --git a/DevOps/attachments/image2022-8-11_11-6-39.png b/DevOps/attachments/image2022-8-11_11-6-39.png new file mode 100644 index 0000000..a7f43fe Binary files /dev/null and b/DevOps/attachments/image2022-8-11_11-6-39.png differ diff --git a/DevOps/attachments/photo_2023-10-31_14-45-08.jpg b/DevOps/attachments/photo_2023-10-31_14-45-08.jpg new file mode 100644 index 0000000..46764d2 Binary files /dev/null and b/DevOps/attachments/photo_2023-10-31_14-45-08.jpg differ diff --git a/DevOps/attachments/снимок_экрана_2023-11-07_182216.png b/DevOps/attachments/снимок_экрана_2023-11-07_182216.png new file mode 100644 index 0000000..7dc07b4 Binary files /dev/null and b/DevOps/attachments/снимок_экрана_2023-11-07_182216.png differ diff --git a/Funny/Find-Work.html b/Funny/Find-Work.html index 2987620..0e8207d 100644 --- a/Funny/Find-Work.html +++ b/Funny/Find-Work.html @@ -2,7 +2,7 @@ title: Как проходить собеседования description: published: true -date: 2023-11-15T16:31:42.044Z +date: 2024-07-09T09:49:26.072Z tags: work, find editor: ckeditor dateCreated: 2023-11-15T16:31:42.044Z diff --git a/Funny/dev1.html b/Funny/dev1.html index a0bd8d5..5d0ff98 100644 --- a/Funny/dev1.html +++ b/Funny/dev1.html @@ -2,7 +2,7 @@ title: Бессмысленная работа DevOps description: published: true -date: 2023-11-15T16:28:01.117Z +date: 2024-07-09T09:49:29.590Z tags: editor: ckeditor dateCreated: 2023-11-15T16:28:01.117Z diff --git a/Funny/game-learn.html b/Funny/game-learn.html index ee7ed3f..2674419 100644 --- a/Funny/game-learn.html +++ b/Funny/game-learn.html @@ -2,7 +2,7 @@ title: Игра, обучение description: published: true -date: 2023-11-15T16:29:10.428Z +date: 2024-07-09T09:49:33.389Z tags: editor: ckeditor dateCreated: 2023-11-15T16:29:10.428Z diff --git a/Hackintosh/Soft.html b/Hackintosh/Soft.html index babf4c8..3e18816 100644 --- a/Hackintosh/Soft.html +++ b/Hackintosh/Soft.html @@ -2,7 +2,7 @@ title: ПО, которое необходимо для установки и настройки хакинтоша description: published: true -date: 2023-11-07T18:15:26.116Z +date: 2024-07-09T09:49:36.868Z tags: mac, soft, hackintosh editor: ckeditor dateCreated: 2023-11-07T10:42:22.230Z diff --git a/NAS/Synology-support-HEVC.html b/NAS/Synology-support-HEVC.html index 051606f..c10f11c 100644 --- a/NAS/Synology-support-HEVC.html +++ b/NAS/Synology-support-HEVC.html @@ -2,7 +2,7 @@ title: Synology-support-HEVC description: published: true -date: 2024-04-01T15:15:52.913Z +date: 2024-07-09T09:49:40.393Z tags: hevc, synology editor: ckeditor dateCreated: 2024-04-01T15:15:52.913Z diff --git a/NAS/install-xpenology.html b/NAS/install-xpenology.html index d9a79cc..82bb3ed 100644 --- a/NAS/install-xpenology.html +++ b/NAS/install-xpenology.html @@ -2,7 +2,7 @@ title: Установка XPEnology description: published: true -date: 2023-11-15T17:00:34.979Z +date: 2024-07-09T09:49:44.068Z tags: xpenology editor: ckeditor dateCreated: 2023-11-15T16:50:54.856Z diff --git a/Soft/Lampa.html b/Soft/Lampa.html index eecc220..1fafc64 100644 --- a/Soft/Lampa.html +++ b/Soft/Lampa.html @@ -2,7 +2,7 @@ title: Lampa description: published: true -date: 2023-11-15T16:16:40.380Z +date: 2024-07-09T09:49:47.593Z tags: editor: ckeditor dateCreated: 2023-11-15T16:16:40.380Z diff --git a/Soft/Lampa/Jacket.html b/Soft/Lampa/Jacket.html index bf847ce..0ce8ab4 100644 --- a/Soft/Lampa/Jacket.html +++ b/Soft/Lampa/Jacket.html @@ -2,7 +2,7 @@ title: Jacket description: published: true -date: 2023-11-15T16:16:16.404Z +date: 2024-07-09T09:49:59.258Z tags: editor: ckeditor dateCreated: 2023-11-15T16:16:16.404Z diff --git a/Soft/Lampa/Torrserver.html b/Soft/Lampa/Torrserver.html index 7b07870..0818cea 100644 --- a/Soft/Lampa/Torrserver.html +++ b/Soft/Lampa/Torrserver.html @@ -2,7 +2,7 @@ title: Torrserver description: published: true -date: 2023-11-15T16:17:38.636Z +date: 2024-07-09T09:50:02.697Z tags: editor: ckeditor dateCreated: 2023-11-15T16:17:38.636Z diff --git a/Soft/Notes/Gitbook.html b/Soft/Notes/Gitbook.html index 122eefb..ed67d63 100644 --- a/Soft/Notes/Gitbook.html +++ b/Soft/Notes/Gitbook.html @@ -2,7 +2,7 @@ title: Сервис документации Gitbook description: published: true -date: 2023-11-15T16:25:24.896Z +date: 2024-07-09T09:50:06.265Z tags: editor: ckeditor dateCreated: 2023-11-15T16:25:24.896Z diff --git a/Soft/Notes/Joplin.html b/Soft/Notes/Joplin.html index 4dd045a..70a0968 100644 --- a/Soft/Notes/Joplin.html +++ b/Soft/Notes/Joplin.html @@ -2,7 +2,7 @@ title: Joplin аля Evernote description: published: true -date: 2023-11-15T16:20:19.477Z +date: 2024-07-09T09:50:10.752Z tags: editor: ckeditor dateCreated: 2023-11-15T16:20:19.477Z diff --git a/Soft/Notes/auto-note.html b/Soft/Notes/auto-note.html index 782201a..b0c4494 100644 --- a/Soft/Notes/auto-note.html +++ b/Soft/Notes/auto-note.html @@ -2,7 +2,7 @@ title: Автоматизации написания документации description: published: true -date: 2023-11-15T16:23:59.264Z +date: 2024-07-09T09:50:14.462Z tags: editor: ckeditor dateCreated: 2023-11-15T16:22:07.682Z diff --git a/Soft/helpdesk/Zammad.html b/Soft/helpdesk/Zammad.html index 10d589f..d5fa33b 100644 --- a/Soft/helpdesk/Zammad.html +++ b/Soft/helpdesk/Zammad.html @@ -2,7 +2,7 @@ title: Zammad description: published: true -date: 2023-11-15T16:13:37.364Z +date: 2024-07-09T09:50:18.059Z tags: editor: ckeditor dateCreated: 2023-11-15T16:12:51.621Z diff --git a/Soft/helpdesk/freescout.html b/Soft/helpdesk/freescout.html index 7364c23..f205c48 100644 --- a/Soft/helpdesk/freescout.html +++ b/Soft/helpdesk/freescout.html @@ -2,7 +2,7 @@ title: FreeScout Help Desk description: published: true -date: 2023-11-15T16:12:07.708Z +date: 2024-07-09T09:50:21.851Z tags: editor: ckeditor dateCreated: 2023-11-15T16:12:07.708Z diff --git a/Soft/manager-password/Passwork.html b/Soft/manager-password/Passwork.html index 0cbd83e..497957f 100644 --- a/Soft/manager-password/Passwork.html +++ b/Soft/manager-password/Passwork.html @@ -2,7 +2,7 @@ title: Менеджер паролей Passwork description: published: true -date: 2023-11-15T16:47:23.462Z +date: 2024-07-09T09:50:26.092Z tags: editor: ckeditor dateCreated: 2023-11-15T16:36:08.780Z diff --git a/Soft/manager-password/bitwarden.html b/Soft/manager-password/bitwarden.html index 1acae37..0a20151 100644 --- a/Soft/manager-password/bitwarden.html +++ b/Soft/manager-password/bitwarden.html @@ -2,7 +2,7 @@ title: Менеджер паролей Bitwarden description: published: true -date: 2023-11-15T16:34:29.896Z +date: 2024-07-09T09:50:29.679Z tags: editor: ckeditor dateCreated: 2023-11-15T16:34:29.896Z diff --git a/Soft/server1c.html b/Soft/server1c.html index 74db803..a1a9e86 100644 --- a/Soft/server1c.html +++ b/Soft/server1c.html @@ -2,7 +2,7 @@ title: Выделенный сервер 1С description: published: true -date: 2023-11-15T16:48:23.320Z +date: 2024-07-09T09:49:51.459Z tags: editor: ckeditor dateCreated: 2023-11-15T16:48:23.320Z diff --git a/home.html b/home.html index 54c2a76..004d62b 100644 --- a/home.html +++ b/home.html @@ -2,7 +2,7 @@ title: Home Page description: published: true -date: 2023-11-08T12:52:20.918Z +date: 2024-07-09T09:49:22.061Z tags: editor: ckeditor dateCreated: 2023-11-03T14:27:02.804Z diff --git a/image2022-8-11_11-6-39.png b/image2022-8-11_11-6-39.png new file mode 100644 index 0000000..a7f43fe Binary files /dev/null and b/image2022-8-11_11-6-39.png differ diff --git a/migration-from-confluence b/migration-from-confluence new file mode 100644 index 0000000..53fefe2 --- /dev/null +++ b/migration-from-confluence @@ -0,0 +1,3 @@ +https://github.com/gkpln3/ConfluenceToWikiJS + +Можно так же попробовать сконвертировать html в markdown \ No newline at end of file diff --git a/photo_2023-10-31_14-45-08.jpg b/photo_2023-10-31_14-45-08.jpg new file mode 100644 index 0000000..46764d2 Binary files /dev/null and b/photo_2023-10-31_14-45-08.jpg differ diff --git a/sysadmin/Databases/Clickhouse/Query-size-tables.html b/sysadmin/Databases/Clickhouse/Query-size-tables.html index 37ee90b..c5d1b7d 100644 --- a/sysadmin/Databases/Clickhouse/Query-size-tables.html +++ b/sysadmin/Databases/Clickhouse/Query-size-tables.html @@ -2,7 +2,7 @@ title: Запрос размера таблиц Clickhouse description: published: true -date: 2024-03-13T10:13:40.903Z +date: 2024-03-13T10:13:44.768Z tags: clickhouse, query editor: ckeditor dateCreated: 2024-03-13T10:11:53.025Z diff --git a/sysadmin/Linux/Base-znaniy/Bat.md b/sysadmin/Linux/Base-znaniy/Bat.md index e2fed72..91b6dd3 100644 --- a/sysadmin/Linux/Base-znaniy/Bat.md +++ b/sysadmin/Linux/Base-znaniy/Bat.md @@ -2,7 +2,7 @@ title: Bat как замена для cat description: published: true -date: 2023-11-15T18:07:37.064Z +date: 2023-11-15T18:07:41.351Z tags: editor: markdown dateCreated: 2023-11-15T18:07:37.064Z diff --git a/sysadmin/Linux/Base-znaniy/Foreman.html b/sysadmin/Linux/Base-znaniy/Foreman.html index 9d02361..7b3bf29 100644 --- a/sysadmin/Linux/Base-znaniy/Foreman.html +++ b/sysadmin/Linux/Base-znaniy/Foreman.html @@ -2,7 +2,7 @@ title: Foreman - централизованное управление серверами description: published: true -date: 2023-11-15T18:15:58.065Z +date: 2023-11-15T18:16:01.944Z tags: editor: ckeditor dateCreated: 2023-11-15T18:15:38.027Z diff --git a/sysadmin/Linux/Base-znaniy/HSTR.html b/sysadmin/Linux/Base-znaniy/HSTR.html index 5b4654f..be8798e 100644 --- a/sysadmin/Linux/Base-znaniy/HSTR.html +++ b/sysadmin/Linux/Base-znaniy/HSTR.html @@ -2,7 +2,7 @@ title: HSTR - история, утилита description: published: true -date: 2023-11-15T18:17:34.603Z +date: 2023-11-15T18:17:38.465Z tags: editor: ckeditor dateCreated: 2023-11-15T18:17:34.603Z diff --git a/sysadmin/Linux/Base-znaniy/bg-less.md b/sysadmin/Linux/Base-znaniy/bg-less.md index 22e5935..b69b4cd 100644 --- a/sysadmin/Linux/Base-znaniy/bg-less.md +++ b/sysadmin/Linux/Base-znaniy/bg-less.md @@ -2,7 +2,7 @@ title: bg & less description: published: true -date: 2023-11-15T18:09:58.490Z +date: 2023-11-15T18:10:02.768Z tags: editor: markdown dateCreated: 2023-11-15T18:09:58.490Z diff --git a/sysadmin/Linux/Base-znaniy/iftop.md b/sysadmin/Linux/Base-znaniy/iftop.md index 83f7c70..bff6142 100644 --- a/sysadmin/Linux/Base-znaniy/iftop.md +++ b/sysadmin/Linux/Base-znaniy/iftop.md @@ -2,7 +2,7 @@ title: iftop description: published: true -date: 2023-11-15T18:20:14.643Z +date: 2023-11-15T18:20:18.654Z tags: editor: markdown dateCreated: 2023-11-15T18:20:14.643Z diff --git a/sysadmin/Linux/Base-znaniy/localtunnel.md b/sysadmin/Linux/Base-znaniy/localtunnel.md index 280326f..ece2e96 100644 --- a/sysadmin/Linux/Base-znaniy/localtunnel.md +++ b/sysadmin/Linux/Base-znaniy/localtunnel.md @@ -2,7 +2,7 @@ title: Cервис localtunnel description: published: true -date: 2023-11-15T18:13:12.227Z +date: 2023-11-15T18:13:16.532Z tags: editor: markdown dateCreated: 2023-11-15T18:11:13.511Z diff --git a/sysadmin/Linux/Base-znaniy/mc.md b/sysadmin/Linux/Base-znaniy/mc.md index e32cdd0..3d69d00 100644 --- a/sysadmin/Linux/Base-znaniy/mc.md +++ b/sysadmin/Linux/Base-znaniy/mc.md @@ -2,7 +2,7 @@ title: Midnight Commander description: published: true -date: 2023-11-15T18:21:18.474Z +date: 2023-11-15T18:21:22.921Z tags: editor: markdown dateCreated: 2023-11-15T18:21:18.474Z diff --git a/sysadmin/Linux/Base-znaniy/nano-color.md b/sysadmin/Linux/Base-znaniy/nano-color.md index ec2f06e..59de438 100644 --- a/sysadmin/Linux/Base-znaniy/nano-color.md +++ b/sysadmin/Linux/Base-znaniy/nano-color.md @@ -2,7 +2,7 @@ title: Nano - расцветка синтаксиса description: published: true -date: 2023-11-15T18:23:47.499Z +date: 2023-11-15T18:23:51.663Z tags: editor: markdown dateCreated: 2023-11-15T18:23:47.499Z diff --git a/sysadmin/Linux/PostgreSQL/PGbouncer.md b/sysadmin/Linux/PostgreSQL/PGbouncer.md index 472ac67..725692b 100644 --- a/sysadmin/Linux/PostgreSQL/PGbouncer.md +++ b/sysadmin/Linux/PostgreSQL/PGbouncer.md @@ -2,7 +2,7 @@ title: PGbouncer description: published: true -date: 2023-11-15T17:53:03.556Z +date: 2023-11-15T17:53:07.867Z tags: editor: markdown dateCreated: 2023-11-15T17:46:34.218Z diff --git a/sysadmin/Linux/PostgreSQL/create-user.md b/sysadmin/Linux/PostgreSQL/create-user.md index 5c8021a..c27b1d8 100644 --- a/sysadmin/Linux/PostgreSQL/create-user.md +++ b/sysadmin/Linux/PostgreSQL/create-user.md @@ -2,7 +2,7 @@ title: Создание пользователя с правами на базы description: published: true -date: 2023-11-15T17:53:56.246Z +date: 2023-11-15T17:54:00.564Z tags: editor: markdown dateCreated: 2023-11-15T17:53:56.246Z diff --git a/sysadmin/Linux/SSL/make-ssl-cert.md b/sysadmin/Linux/SSL/make-ssl-cert.md index 99a79bd..2fad71d 100644 --- a/sysadmin/Linux/SSL/make-ssl-cert.md +++ b/sysadmin/Linux/SSL/make-ssl-cert.md @@ -2,7 +2,7 @@ title: Выпускаем свой сертификат через свой CA description: published: true -date: 2024-04-24T09:45:43.127Z +date: 2024-04-24T09:45:47.898Z tags: ssl editor: markdown dateCreated: 2024-04-24T09:45:43.127Z diff --git a/sysadmin/Linux/VPN/Privoxy.md b/sysadmin/Linux/VPN/Privoxy.md index f2dbade..98f2801 100644 --- a/sysadmin/Linux/VPN/Privoxy.md +++ b/sysadmin/Linux/VPN/Privoxy.md @@ -2,7 +2,7 @@ title: Обход блокировок через VPN (privoxy) description: published: true -date: 2024-04-24T09:54:39.876Z +date: 2024-04-24T09:54:44.065Z tags: privoxy, vpn editor: markdown dateCreated: 2024-04-24T09:54:39.876Z diff --git a/sysadmin/Linux/VPN/vpn-server-ipsec.md b/sysadmin/Linux/VPN/vpn-server-ipsec.md index e0c8885..3c9269f 100644 --- a/sysadmin/Linux/VPN/vpn-server-ipsec.md +++ b/sysadmin/Linux/VPN/vpn-server-ipsec.md @@ -2,7 +2,7 @@ title: VPN сервер ipsec description: published: true -date: 2023-11-15T17:55:15.923Z +date: 2024-04-24T09:55:23.699Z tags: editor: markdown dateCreated: 2023-11-15T17:55:15.923Z diff --git a/sysadmin/Linux/analize-and-test/analize-disk.md b/sysadmin/Linux/analize-and-test/analize-disk.md index 40cddf0..56ab3fc 100644 --- a/sysadmin/Linux/analize-and-test/analize-disk.md +++ b/sysadmin/Linux/analize-and-test/analize-disk.md @@ -2,7 +2,7 @@ title: Анализ дисковой активности в Linux description: published: true -date: 2023-11-15T17:57:25.992Z +date: 2023-11-15T17:57:30.267Z tags: editor: markdown dateCreated: 2023-11-15T17:57:25.992Z diff --git a/sysadmin/Linux/analize-and-test/analize-system.md b/sysadmin/Linux/analize-and-test/analize-system.md index 6e5e191..38975cb 100644 --- a/sysadmin/Linux/analize-and-test/analize-system.md +++ b/sysadmin/Linux/analize-and-test/analize-system.md @@ -2,7 +2,7 @@ title: Анализ системы description: published: true -date: 2023-11-15T18:00:46.536Z +date: 2023-11-15T18:00:50.962Z tags: editor: markdown dateCreated: 2023-11-15T18:00:08.853Z diff --git a/sysadmin/Linux/python/venv.html b/sysadmin/Linux/python/venv.html index 6a25c10..9617b8a 100644 --- a/sysadmin/Linux/python/venv.html +++ b/sysadmin/Linux/python/venv.html @@ -2,7 +2,7 @@ title: Виртуальная среда venv в python description: published: true -date: 2024-04-12T10:15:15.531Z +date: 2024-04-12T10:15:19.492Z tags: venv, python editor: ckeditor dateCreated: 2024-04-12T10:15:15.531Z diff --git a/sysadmin/backup/UFSExplorer.html b/sysadmin/backup/UFSExplorer.html index 68baaf7..2a7a716 100644 --- a/sysadmin/backup/UFSExplorer.html +++ b/sysadmin/backup/UFSExplorer.html @@ -2,7 +2,7 @@ title: UFS Explorer description: published: true -date: 2023-11-15T16:04:17.051Z +date: 2024-07-09T09:50:33.595Z tags: editor: code dateCreated: 2023-11-15T16:04:17.051Z diff --git a/sysadmin/backup/rclone/rclone-backup.html b/sysadmin/backup/rclone/rclone-backup.html index 7bf168d..a8c3d8e 100644 --- a/sysadmin/backup/rclone/rclone-backup.html +++ b/sysadmin/backup/rclone/rclone-backup.html @@ -2,7 +2,7 @@ title: rclone-backup description: published: true -date: 2023-11-15T16:02:43.782Z +date: 2023-11-15T16:02:47.835Z tags: editor: ckeditor dateCreated: 2023-11-15T15:58:15.041Z diff --git a/sysadmin/backup/syncthing.html b/sysadmin/backup/syncthing.html index 8ab7c06..924e706 100644 --- a/sysadmin/backup/syncthing.html +++ b/sysadmin/backup/syncthing.html @@ -2,7 +2,7 @@ title: Syncthing - резервное копирование description: published: true -date: 2023-11-07T18:14:49.621Z +date: 2024-07-09T09:50:37.090Z tags: syncthing, backup editor: ckeditor dateCreated: 2023-11-02T11:52:22.718Z diff --git a/sysadmin/bash/bash-completion.html b/sysadmin/bash/bash-completion.html index e83cb55..e3f3f03 100644 --- a/sysadmin/bash/bash-completion.html +++ b/sysadmin/bash/bash-completion.html @@ -2,7 +2,7 @@ title: bash-completion автодополнение description: published: true -date: 2023-11-07T18:14:53.812Z +date: 2024-07-09T09:50:40.980Z tags: bash, linux editor: ckeditor dateCreated: 2023-11-03T08:47:49.396Z diff --git a/sysadmin/bash/process-forward.md b/sysadmin/bash/process-forward.md index 4f48b7d..1a453a1 100644 --- a/sysadmin/bash/process-forward.md +++ b/sysadmin/bash/process-forward.md @@ -2,7 +2,7 @@ title: Отвязка процесса от терминальной сессии description: published: true -date: 2023-11-07T18:15:16.344Z +date: 2024-07-09T09:50:49.090Z tags: bash, process, screen editor: markdown dateCreated: 2023-11-07T10:15:03.139Z diff --git a/sysadmin/logs-output/output-shpargalka.md b/sysadmin/logs-output/output-shpargalka.md index 51e045f..a9a0321 100644 --- a/sysadmin/logs-output/output-shpargalka.md +++ b/sysadmin/logs-output/output-shpargalka.md @@ -2,7 +2,7 @@ title: Шпаргалка по выводу в терминале description: published: true -date: 2023-11-07T18:15:21.619Z +date: 2024-07-09T09:50:56.761Z tags: output, tee editor: markdown dateCreated: 2023-11-07T10:37:25.945Z diff --git a/sysadmin/other/CyberChef.html b/sysadmin/other/CyberChef.html index a7d90ee..ec5aabf 100644 --- a/sysadmin/other/CyberChef.html +++ b/sysadmin/other/CyberChef.html @@ -2,7 +2,7 @@ title: CyberChef - преобразователь всего и вся description: published: true -date: 2023-11-15T16:09:03.399Z +date: 2024-07-09T09:51:00.476Z tags: editor: ckeditor dateCreated: 2023-11-15T16:07:15.571Z diff --git a/sysadmin/ssh/ssh-auth.md b/sysadmin/ssh/ssh-auth.md index c8459ae..ba9100c 100644 --- a/sysadmin/ssh/ssh-auth.md +++ b/sysadmin/ssh/ssh-auth.md @@ -2,7 +2,7 @@ title: Авторизация по ключу rsa по ssh description: published: true -date: 2023-11-07T18:15:06.736Z +date: 2024-07-09T09:51:04.649Z tags: ssh, rsa editor: markdown dateCreated: 2023-11-03T12:36:39.209Z diff --git a/sysadmin/ssh/zsh.md b/sysadmin/ssh/zsh.md index 2375934..745b46f 100644 --- a/sysadmin/ssh/zsh.md +++ b/sysadmin/ssh/zsh.md @@ -2,7 +2,7 @@ title: Установка zsh description: published: true -date: 2024-03-26T08:52:49.279Z +date: 2024-07-09T09:51:04.697Z tags: zsh editor: markdown dateCreated: 2024-03-26T08:48:21.443Z diff --git a/sysadmin/windows/port-forwarding.md b/sysadmin/windows/port-forwarding.md index ec3e6c3..274139c 100644 --- a/sysadmin/windows/port-forwarding.md +++ b/sysadmin/windows/port-forwarding.md @@ -2,7 +2,7 @@ title: Проброс портов в Windows description: published: true -date: 2023-11-15T17:44:43.816Z +date: 2023-11-15T17:44:48.059Z tags: editor: markdown dateCreated: 2023-11-15T17:41:44.280Z diff --git a/sysadmin/windows/tools/Install-nano.md b/sysadmin/windows/tools/Install-nano.md index 451bb1d..c5b3d3a 100644 --- a/sysadmin/windows/tools/Install-nano.md +++ b/sysadmin/windows/tools/Install-nano.md @@ -2,7 +2,7 @@ title: Установка nano в Windows description: published: true -date: 2024-02-27T16:15:42.054Z +date: 2024-02-27T16:15:46.160Z tags: editor: markdown dateCreated: 2024-02-27T13:29:54.179Z diff --git a/снимок_экрана_2023-11-07_182216.png b/снимок_экрана_2023-11-07_182216.png new file mode 100644 index 0000000..7dc07b4 Binary files /dev/null and b/снимок_экрана_2023-11-07_182216.png differ