Here’s the metadata URLs for both AWS and GCP.
curl http://169.254.169.254/computeMetadata/v1/ -H "Metadata-Flavor: Google" curl http://169.254.169.254/latest/meta-data/ |
cloud engineer
Here’s the metadata URLs for both AWS and GCP.
curl http://169.254.169.254/computeMetadata/v1/ -H "Metadata-Flavor: Google" curl http://169.254.169.254/latest/meta-data/ |
curl http://169.254.169.254/computeMetadata/v1/ -H "Metadata-Flavor: Google" curl http://169.254.169.254/latest/meta-data/
There are multiple ways to change URL in WordPress.
Here’s one via wp-config.php.
define( 'WP_HOME', 'http://example.com' ); define( 'WP_SITEURL', 'http://example.com' ); |
define( 'WP_HOME', 'http://example.com' ); define( 'WP_SITEURL', 'http://example.com' );
If you have a redirect in Apache, comment it out.
#Redirect permanent / https://yourdomain.com/ |
#Redirect permanent / https://yourdomain.com/
This is by far the easiest way to change URL in WordPress.
Here’s how to login to GCP from Google SDK.
gcloud auth login |
gcloud auth login
You will then be taken to a page that you have successfully logged in.