skip to Main Content

Azure – Get extended property Microsoft graph mailFolders

This is maybe a very dumb question but I am trying to create a hidden folder with multiValueExtendedProperties. If I´m creating the folder like this: POST https://graph.microsoft.com/v1.0/me/mailFolders { "displayName": "Test", "isHidden": "true", "multiValueExtendedProperties": [ { "id": "StringArray {66f5a359-4659-4830-9070-00050ec6ac6e} Name Recreation",…

VIEW QUESTION

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
Back To Top
Search