- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 637 for CONSOLE (0.13 seconds)
-
helm-releases/minio-3.1.8.tgz
initialize: |- {{ include (print $.Template.BasePath "/_helper_create_bucket.txt") . | indent 4 }} add-user: |- {{ include (print $.Template.BasePath "/_helper_create_user.txt") . | indent 4 }} minio/templates/console-ingress.yaml {{- if .Values.consoleIngress.enabled -}} {{- $fullName := printf "%s-console" (include "minio.fullname" .) -}} {{- $servicePort := .Values.consoleService.port -}} {{- $ingressPath := .Values.consoleIngress.path -}} apiVersion: {{ template "minio.consoleIngress.apiVersion" . }}...Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Oct 07 05:03:47 GMT 2021 - 14.6K bytes - Click Count (0) -
.github/workflows/mint/nginx.conf
server minio2:9000 max_fails=1 fail_timeout=10s; server minio3:9000 max_fails=1 fail_timeout=10s; server minio4:9000 max_fails=1 fail_timeout=10s; } upstream console { ip_hash; server minio1:9001; server minio2:9001; server minio3:9001; server minio4:9001; } server { listen 9000; listen [::]:9000;Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed May 15 16:52:29 GMT 2024 - 3.1K bytes - Click Count (0) -
helm-releases/minio-3.4.7.tgz
initialize: |- {{ include (print $.Template.BasePath "/_helper_create_bucket.txt") . | indent 4 }} add-user: |- {{ include (print $.Template.BasePath "/_helper_create_user.txt") . | indent 4 }} minio/templates/console-ingress.yaml {{- if .Values.consoleIngress.enabled -}} {{- $fullName := printf "%s-console" (include "minio.fullname" .) -}} {{- $servicePort := .Values.consoleService.port -}} {{- $ingressPath := .Values.consoleIngress.path -}} apiVersion: {{ template "minio.consoleIngress.apiVersion" . }}...Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Jan 25 20:49:24 GMT 2022 - 15.2K bytes - Click Count (0) -
helm-releases/minio-2.0.1.tgz
initialize: |- {{ include (print $.Template.BasePath "/_helper_create_bucket.txt") . | indent 4 }} add-user: |- {{ include (print $.Template.BasePath "/_helper_create_user.txt") . | indent 4 }} minio/templates/console-ingress.yaml {{- if .Values.consoleIngress.enabled -}} {{- $fullName := printf "%s-console" (include "minio.fullname" .) -}} {{- $servicePort := .Values.consoleService.port -}} {{- $ingressPath := .Values.consoleIngress.path -}} apiVersion: {{ template "minio.consoleIngress.apiVersion" . }}...Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 31 09:09:09 GMT 2021 - 13.6K bytes - Click Count (0) -
README.md
## Test MinIO Connectivity ### Test using MinIO Console MinIO Server comes with an embedded web based object browser. Point your web browser to <http://127.0.0.1:9000> to ensure your server has started successfully. > [!NOTE] > MinIO runs console on random port by default, if you wish to choose a specific port use `--console-address` to pick a specific interface and port. ### Test using MinIO Client `mc`
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Feb 12 20:18:48 GMT 2026 - 8.8K bytes - Click Count (0) -
docs/ko/docs/deployment/fastapicloud.md
먼저 **FastAPI Cloud** 계정이 이미 있는지 확인하세요(대기자 명단에서 초대해 드렸을 거예요 😉). 그다음 로그인합니다: <div class="termy"> ```console $ fastapi login You are logged in to FastAPI Cloud 🚀 ``` </div> ## 배포하기 { #deploy } 이제 **한 번의 명령**으로 앱을 배포합니다: <div class="termy"> ```console $ fastapi deploy Deploying to FastAPI Cloud... ✅ Deployment successful!
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 2.3K bytes - Click Count (0) -
docs/ja/docs/deployment/fastapicloud.md
すでに **FastAPI Cloud** アカウントをお持ちであることを確認してください(ウェイティングリストからご招待しています 😉)。 次にログインします: <div class="termy"> ```console $ fastapi login You are logged in to FastAPI Cloud 🚀 ``` </div> ## デプロイ { #deploy } では、**コマンド1つ** でアプリをデプロイします: <div class="termy"> ```console $ fastapi deploy Deploying to FastAPI Cloud... ✅ Deployment successful!
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/zh/docs/advanced/websockets.md
## 安装 `websockets` { #install-websockets } 请确保您创建一个[虚拟环境](../virtual-environments.md)、激活它,并安装 `websockets`(一个让使用“WebSocket”协议更容易的 Python 库): <div class="termy"> ```console $ pip install websockets ---> 100% ``` </div> ## WebSockets 客户端 { #websockets-client } ### 在生产环境中 { #in-production } 在您的生产系统中,您可能使用现代框架(如 React、Vue.js 或 Angular)创建了一个前端。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 5.4K bytes - Click Count (0) -
docs/en/docs/tutorial/debugging.md
<div class="termy"> ```console $ python myapp.py ``` </div> but is not called when another file imports it, like in: ```Python from myapp import app ``` #### More details { #more-details } Let's say your file is named `myapp.py`. If you run it with: <div class="termy"> ```console $ python myapp.py ``` </div>
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/orchestration/docker-compose/nginx.conf
# include /etc/nginx/conf.d/*.conf; upstream minio { server minio1:9000; server minio2:9000; server minio3:9000; server minio4:9000; } upstream console { ip_hash; server minio1:9001; server minio2:9001; server minio3:9001; server minio4:9001; } server { listen 9000; listen [::]:9000;Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sat Mar 05 06:32:39 GMT 2022 - 3K bytes - Click Count (0)