Skip to content

Add HTTP proxy configuration example #601

@swissspidy

Description

@swissspidy

Split out from wp-cli/core-command#292

You might be able to do something like this:

# In wp-cli.yml require: - path-to/proxy.php
// proxy.php $proxy_host = getenv( 'HTTP_PROXY' ); if ( ! $proxy_host ) { return; } $proxy_url = parse_url( $proxy_host ); if ( $proxy_url['host'] ) { define( 'WP_PROXY_HOST', $proxy_url['host'] ); } if ( $proxy_url['port'] ) { define( 'WP_PROXY_PORT', $proxy_url['port'] ); }

This would configure the proxy for HTTP requests in core when using WP-CLI, similar to when you define this in wp-config.php. The setup would be slightly more complex for modifying HTTP requests from WP-CLI itself.

Metadata

Metadata

Assignees

No one assigned

    Type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions