skip to Main Content

Nginx – How I can hide URL parameters in a reverse proxy?

I have the following reverse proxy in Nginx. I am trying to hide the sig key. location /documents { set $delimeter ""; if ($is_args) { set $delimeter "&"; } set $args "$args${delimeter}sp=rl&st=2024-02-15T14:18:59Z&se=2025-02-15T22:18:59Z&spr=https&sv=2022-11-02&sr=c&sig=TxTaaaaaaaaaaaaaaaaaaaaaaaaaaNgU%3D"; proxy_pass https://testtestsitweu.blob.core.windows.net/publicfiles/MyFiles/; proxy_ssl_name testtestsitweu.blob.core.windows.net; proxy_ssl_server_name on; } But…

VIEW QUESTION

Rebooting an Azure VM within an ansible playbook

I've an inventory that looks like this: virtualmachines: hosts: Name-Of-My-Azure-VM-Here: ansible_host: 1.2.3.4 ansible_port: 22 Name-Of-My-Other-Azure-VM-Here: ansible_host: 2.3.4.5 ansible_port: 22 I'm trying to reboot the machine when I'm done with the setup. The built in reboot command throws an error: Reboot…

VIEW QUESTION

Azure – get all the values from terraform for_each block in output

I am trying to fetch the private ip address from the below terraform block. resource "azurerm_private_endpoint" "private_endpoint_openAI" { for_each = var.private_endpoint_landing_zone_pe provider = azurerm.sub_private_endpoint_landing_zone name = each.key custom_network_interface_name = "${each.key}-nic" location = each.value.location resource_group_name = each.value.rg_name subnet_id = each.value.subnet_id tags…

VIEW QUESTION
Back To Top
Search