Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 431 - 440 of 523 for LOCALHOST (0.06 seconds)

  1. docs/ko/docs/advanced/strict-content-type.md

    이 유형의 공격은 주로 다음과 같은 경우에 관련이 있습니다:
    
    - 애플리케이션이 로컬(예: `localhost`) 또는 내부 네트워크에서 실행 중이고
    - 애플리케이션에 인증이 없어 같은 네트워크에서 오는 모든 요청을 신뢰한다고 가정하는 경우
    
    ## 공격 예시 { #example-attack }
    
    로컬 AI 에이전트를 실행하는 방법을 만들었다고 가정해 봅시다.
    
    이 에이전트는 다음 위치에 API를 제공합니다:
    
    ```
    http://localhost:8000/v1/agents/multivac
    ```
    
    또한 다음 위치에 프론트엔드가 있습니다:
    
    ```
    http://localhost:8000
    ```
    
    /// tip | 팁
    
    두 주소 모두 같은 호스트를 사용합니다.
    
    ///
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:56:39 GMT 2026
    - 4K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/advanced/behind-a-proxy.md

    例如,假設你定義了一個「路徑操作(path operation)」`/items/`:
    
    {* ../../docs_src/behind_a_proxy/tutorial001_01_py310.py hl[6] *}
    
    如果用戶端嘗試前往 `/items`,預設會被重新導向到 `/items/`。
    
    但在設定「CLI 選項」`--forwarded-allow-ips` 之前,它可能會被重新導向到 `http://localhost:8000/items/`。
    
    不過,也許你的應用實際部署在 `https://mysuperapp.com`,那重新導向就應該是 `https://mysuperapp.com/items/`。
    
    設定 `--proxy-headers` 之後,FastAPI 就能重新導向到正確的位置。😎
    
    ```
    https://mysuperapp.com/items/
    ```
    
    /// tip
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                    try {
                        final InetAddress localhost = InetAddress.getByName("localhost");
                        httpAddress = IpAddressUtil.buildUrl("http", localhost, port, "");
                    } catch (final UnknownHostException e) {
                        httpAddress = "http://localhost:" + port; // Fallback
                    }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
  4. helm-releases/minio-5.3.0.tgz

     "ClusterIP" "NodePort" }} MinIO can be accessed via port {{ .Values.service.port }} on the following DNS name from within your cluster: {{ template "minio.fullname" . }}.{{ .Release.Namespace }}.{{ .Values.clusterDomain }} To access MinIO from localhost, run the below commands: 1. export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") 2. kubectl port-forward $POD_NAME 9000 --namespace {{ .Release.Namespace...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Oct 11 12:21:05 GMT 2024
    - 21.7K bytes
    - Click Count (0)
  5. docs/de/README.md

        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    
    Um einen einzelnen Testfall auszuführen, können Sie verwenden:
    
        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" -Dtest=SearchApiTests
    
    ### In Ihre Sprache übersetzen
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  6. docs/fr/README.md

        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    
    Pour exécuter un seul cas de test, vous pouvez utiliser :
    
        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" -Dtest=SearchApiTests
    
    ### Traduire dans Votre Langue
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  7. docs/pt-BR/README.md

    Inicie o servidor Fess e execute o seguinte comando:
    
        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    
    Para executar um único caso de teste, você pode usar:
    
        $ mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" -Dtest=SearchApiTests
    
    ### Traduzir para o Seu Idioma
    
    Fess é um software internacionalizado.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  8. docs/ja/docs/advanced/behind-a-proxy.md

    例えば、*path operation* `/items/` を定義しているとします:
    
    {* ../../docs_src/behind_a_proxy/tutorial001_01_py310.py hl[6] *}
    
    クライアントが `/items` にアクセスすると、既定では `/items/` にリダイレクトされます。
    
    しかし、*CLI オプション* `--forwarded-allow-ips` を設定する前は、`http://localhost:8000/items/` にリダイレクトされる場合があります。
    
    ですが、アプリケーションは `https://mysuperapp.com` で公開されており、`https://mysuperapp.com/items/` にリダイレクトされるべきかもしれません。
    
    `--proxy-headers` を設定すると、FastAPI は正しい場所にリダイレクトできるようになります。😎
    
    ```
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  9. docs/zh/docs/advanced/behind-a-proxy.md

    例如,假设你定义了一个*路径操作* `/items/`:
    
    {* ../../docs_src/behind_a_proxy/tutorial001_01_py310.py hl[6] *}
    
    如果客户端尝试访问 `/items`,默认会被重定向到 `/items/`。
    
    但在设置 *CLI 选项* `--forwarded-allow-ips` 之前,它可能会重定向到 `http://localhost:8000/items/`。
    
    而你的应用可能托管在 `https://mysuperapp.com`,重定向应当是 `https://mysuperapp.com/items/`。
    
    通过设置 `--proxy-headers`,FastAPI 现在就可以重定向到正确的位置。😎
    
    ```
    https://mysuperapp.com/items/
    ```
    
    /// tip | 提示
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 15.1K bytes
    - Click Count (0)
  10. src/main/resources/fess_label_en.properties

    labels.spnego_preauth_password=Pre-Auth Password
    labels.spnego_allow_basic=Allow Basic Auth
    labels.spnego_allow_unsecure_basic=Allow Unsecure Basic Auth
    labels.spnego_prompt_ntlm=Prompt NTLM
    labels.spnego_allow_localhost=Allow Localhost
    labels.spnego_allow_delegation=Allow Delegation
    labels.spnego_exclude_dirs=Exclude Directories
    labels.general_menu_entraid=Entra ID
    labels.entraid_client_id=Client ID
    labels.entraid_client_secret=Client Secret
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
Back to Top