{"id":531,"date":"2022-02-21T14:08:16","date_gmt":"2022-02-21T13:08:16","guid":{"rendered":"https:\/\/blog.exterra-services.cz\/?p=531"},"modified":"2022-03-11T10:16:49","modified_gmt":"2022-03-11T09:16:49","slug":"konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http","status":"publish","type":"post","link":"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/","title":{"rendered":"Konfigurace reverzn\u00ed proxy Apache httpd pro Outlook Anywhere (RPC over HTTP)"},"content":{"rendered":"\n<p>V Microsoft Exchange 2013 se prvn\u011b objevila funkce <a href=\"https:\/\/docs.microsoft.com\/en-us\/exchange\/outlook-anywhere-exchange-2013-help\">Outlok Anywhere<\/a> (tehdy zvan\u00e1 &#8222;RPC over HTTP&#8220;), kter\u00e1 umo\u017e\u0148ovala Outloku 2007 a nov\u011bj\u0161\u00edm p\u0159ipojovat se k Exchange serveru i z ve\u0159ejn\u00e9ho internetu pomoc\u00ed HTTP. Proto\u017ee samotn\u00e1 Exchange, zvl\u00e1\u0161t\u011b v posledn\u00ed dob\u011b, trp\u00ed r\u016fzn\u00fdmi bezpe\u010dnostn\u00edmi chybami a zranitelnostmi (nap\u0159. zde <a href=\"https:\/\/blog.nashcom.de\/nashcomblog.nsf\/dx\/critical-exchange-on-prem-issue-fip-fs-microsoft-scan-engine-failed-to-load.htm\" target=\"_blank\" rel=\"noreferrer noopener\">Daniel Nashed&#8217;s Blog (nashcom.de)<\/a>, je \u017e\u00e1douc\u00ed ji skr\u00fdt nap\u0159. za reverzn\u00ed proxy s WAF (web application firewallem). Podobn\u00e9 \u0159e\u0161en\u00ed jsem popisoval <a href=\"https:\/\/blog.exterra-services.cz\/index.php\/2021\/05\/04\/waf-modsecurity-apache-centos-7\/\" target=\"_blank\" rel=\"noreferrer noopener\">zde<\/a>.<\/p>\n\n\n\n<p>Zad\u00e1n\u00edm bylo, aby z ve\u0159ejn\u00e9ho internetu byly p\u0159\u00edstupn\u00e9 slu\u017eby:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Outlook Web Access (OWA) &#8211; webov\u00e9 rozhran\u00ed po\u0161ty<\/li><li>ActiveSync &#8211; p\u0159\u00edstup mobiln\u00edch za\u0159\u00edzen\u00ed<\/li><li>Outlok Anywhere &#8211; p\u0159\u00edstup pro &#8222;velk\u00fd&#8220; Outlook<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;VirtualHost *:443&gt;\n    ServerName mail.vurv.cz\n    ServerAlias firma.cz\n    ServerAlias autodiscover.firma.cz\n    ProxyRequests Off\n    ProxyPreserveHost Off\n    RewriteEngine On\n    SSLEngine On\n    SSLProxyEngine On\n    RequestHeader set Front-End-Https On\n    RequestHeader unset Origin\n    \n   # Header always set X-Frame-Options SAMEORIGIN\n   Header set Server Apache\n   Header unset X-AspNet-Version\n   Header unset X-OWA-Version\n   Header unset X-Powered-By\n\n   RequestHeader unset Expect early\n\n#   SetEnvIf User-Agent \".*MSIE.*\" value BrowserMSIE\n    KeepAlive On\n   Header unset WWW-Authenticate\n   Header add WWW-Authenticate \"Basic realm=mail.firma.cz\"\n# Copied from https:\/\/github.com\/phr0gz\/Apache-reverse-proxy-for-Exchange-2010-2013-2016\/blob\/master\/webmail.conf\n    ProxyVia Full\n    RequestHeader edit Transfer-Encoding Chunked chunked early\n    RequestHeader unset Accept-Encoding\n    Timeout 1800\n# copied the end\n\n    Redirect \/ \/owa\/\n\n# owa\n    ProxyPass \/owa https:\/\/mail.firma.cz\/owa KeepAlive=on\n    ProxyPassReverse \/owa https:\/\/mail.firma.cz\/owa\n    ProxyPass \/OWA https:\/\/mail.firma.cz\/OWA  KeepAlive=on\n    ProxyPassReverse \/OWA https:\/\/mail.firma.cz\/OWA\n    ProxyPass \/Owa https:\/\/mail.firma.cz\/Owa  KeepAlive=on\n    ProxyPassReverse \/Owa https:\/\/mail.firma.cz\/Owa\n\n# ews -&gt; Exchange Web Services\n    ProxyPass \/ews https:\/\/mail.firma.cz\/ews KeepAlive=on\n    ProxyPassReverse \/ews https:\/\/mail.firma.cz\/ews \n    ProxyPass \/EWS https:\/\/mail.firma.cz\/EWS KeepAlive=on\n    ProxyPassReverse \/EWS https:\/\/mail.firma.cz\/EWS\n    ProxyPass \/Ews https:\/\/mail.firma.cz\/Ews KeepAlive=on\n    ProxyPassReverse \/Ews https:\/\/mail.firma.cz\/Ews\n    ProxyPass \/exchange https:\/\/mail.firma.cz\/exchange KeepAlive=on\n    ProxyPassReverse \/exchange https:\/\/mail.firma.cz\/exchange\n    ProxyPass \/Exchange https:\/\/mail.firma.cz\/Exchange KeepAlive=on\n    ProxyPassReverse \/Exchange https:\/\/mail.firma.cz\/Exchange\n    ProxyPass \/exchweb https:\/\/mail.firma.cz\/exchweb KeepAlive=on\n    ProxyPassReverse \/exchweb https:\/\/mail.firma.cz\/exchweb\n    ProxyPass \/public https:\/\/mail.firma.cz\/public KeepAlive=on\n    ProxyPassReverse \/public https:\/\/mail.firma.cz\/public\n\n# oab (Offline Address Book)\n    ProxyPass \/oab https:\/\/mail.firma.cz\/oab KeepAlive=on\n    ProxyPassReverse \/oab https:\/\/mail.firma.cz\/oab\n    ProxyPass \/OAB https:\/\/mail.firma.cz\/OAB KeepAlive=on\n    ProxyPassReverse \/OAB https:\/\/mail.firma.cz\/OAB\n\n# mapi\n    ProxyPass \/mapi https:\/\/mail.firma.cz\/mapi KeepAlive=on\n    ProxyPassReverse \/mapi https:\/\/mail.firma.cz\/mapi\n\n# RPC over http(s) \/ Outlook Anywhere\n#    OutlookAnywhere Passthrough On\n    ProxyPass \/rpc https:\/\/mail.firma.cz\/rpc KeepAlive=on\n    ProxyPassReverse \/rpc https:\/\/mail.firma.cz\/rpc\n    ProxyPass \/Rpc https:\/\/10.0.7.45\/Rpc KeepAlive=on\n    ProxyPassReverse \/Rpc https:\/\/mail.firma.cz\/Rpc\n\n# AutoDiscover -&gt; Autodiscover for non-AD integrated Clients (Mac, eg.)\n    ProxyPass \/autodiscover https:\/\/mail.firma.cz\/autodiscover\n    ProxyPassReverse \/autodiscover https:\/\/mail.firma.cz\/autodiscover\n    ProxyPass \/Autodiscover https:\/\/mail.firma.cz\/Autodiscover\n    ProxyPassReverse \/Autodiscover https:\/\/mail.firma.cz\/Autodiscover\n    ProxyPass \/AutoDiscover https:\/\/mail.firma.cz\/AutoDiscover\n    ProxyPassReverse \/AutoDiscover https:\/\/mail.firma.cz\/AutoDiscover\n\n# Microsoft-Server-ActiveSync\n    ProxyPass \/Microsoft-Server-ActiveSync https:\/\/mail.firma.cz\/Microsoft-Server-ActiveSync connectiontimeout=900 KeepAlive=on\n    ProxyPassReverse \/Microsoft-Server-ActiveSync https:\/\/mail.firma.cz\/Microsoft-Server-ActiveSync\n\n    Header unset WWW-Authenticate\n    Header add WWW-Authenticate \"Basic realm=mail.firma.cz\"\n\n    ErrorLog \/var\/log\/httpd\/mail.firma.cz_443_error_log\n    TransferLog \/var\/log\/httpd\/mail.firma.cz_443_access_log\n\n    SSLCertificateFile \/etc\/letsencrypt\/live\/mail.firma.cz\/cert.pem\n    SSLCertificateChainFile \/etc\/letsencrypt\/live\/mail.firma.cz\/chain.pem\n    SSLCertificateKeyFile \/etc\/letsencrypt\/live\/mail.firma.cz\/privkey.pem\n\n    RequestHeader set X-Forwarded-Proto https\n    SSLProxyVerify none\n    SSLProxyCheckPeerCN off\n    SSLProxyCheckPeerExpire off\n    SSLProxyCheckPeerName off\n\n# Problem with sending file attachments &gt; Bypass 128KByte via ActiceSync (new value 30MByte)\n   &lt;Directory \/Microsoft-Server-ActiveSync&gt;\n      SSLRenegBufferSize 31457280\n   &lt;\/Directory&gt;\n\n    BrowserMatch \"MSIE [2-6]\" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0\n    # MSIE 7 and newer should be able to use keepalive\n    BrowserMatch \"MSIE [17-9]\" ssl-unclean-shutdown\n\n&lt;\/VirtualHost&gt;\n\n\n<\/pre>\n\n\n\n<p>V\u00fdsledn\u00e1 konfigurace vznikla po mnoha pokusech, z\u00e1kladem byly tyto \u010dl\u00e1nky z internetu:<\/p>\n\n\n\n<p><a href=\"https:\/\/znil-net.translate.goog\/index.php?title=Apache2_als_Reverse_Proxy_f%C3%BCr_Exchange_2010_2013_inklusive_Outlook_Anywhere_RPC_over_http&amp;_x_tr_sl=auto&amp;_x_tr_tl=en&amp;_x_tr_hl=zh-CN\" target=\"_blank\" rel=\"noreferrer noopener\">Apache2 als Reverse Proxy f\u00fcr Exchange 2010 2013 2016 2019 inklusive Outlook Anywhere RPC over http \u2013 znilwiki (znil-net.translate.goog)<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/github-com.translate.goog\/phr0gz\/Apache-reverse-proxy-for-Exchange-2010-2013-2016?_x_tr_sl=auto&amp;_x_tr_tl=en&amp;_x_tr_hl=cs\" target=\"_blank\" rel=\"noreferrer noopener\">GitHub &#8211; phr0gz\/Apache-reverse-proxy-for-Exchange-2010-2013-2016: Reverse proxy for Exchange 2010 2013 2016 (github-com.translate.goog)<\/a><\/p>\n\n\n\n<p>Na stran\u011b Exchange 2016 bylo nutno nad adres\u00e1\u0159i slu\u017eeb Exchange p\u0159idat a povolit &#8222;Basic authentication&#8220;.<\/p>\n\n\n\n<p>Pro \u0159e\u0161en\u00ed tak\u00e9 pomohl tento vynikaj\u00edc\u00ed \u010dl\u00e1nek &#8211; <a href=\"https:\/\/www.samuraj-cz.com\/clanek\/exchange-server-2016-client-access-pristup-klientu\/\">Exchange Server 2016 Client Access &#8211; p\u0159\u00edstup klient\u016f<\/a>.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>V Microsoft Exchange 2013 se prvn\u011b objevila funkce Outlok Anywhere (tehdy zvan\u00e1 &#8222;RPC over HTTP&#8220;), kter\u00e1 umo\u017e\u0148ovala Outloku 2007 a nov\u011bj\u0161\u00edm p\u0159ipojovat se k Exchange serveru i z ve\u0159ejn\u00e9ho internetu pomoc\u00ed HTTP. Proto\u017ee samotn\u00e1 Exchange, zvl\u00e1\u0161t\u011b v posledn\u00ed dob\u011b, trp\u00ed r\u016fzn\u00fdmi bezpe\u010dnostn\u00edmi chybami a zranitelnostmi (nap\u0159. zde Daniel Nashed&#8217;s Blog (nashcom.de), je \u017e\u00e1douc\u00ed ji skr\u00fdt [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"ocean_post_layout":"","ocean_both_sidebars_style":"","ocean_both_sidebars_content_width":0,"ocean_both_sidebars_sidebars_width":0,"ocean_sidebar":"0","ocean_second_sidebar":"0","ocean_disable_margins":"enable","ocean_add_body_class":"","ocean_shortcode_before_top_bar":"","ocean_shortcode_after_top_bar":"","ocean_shortcode_before_header":"","ocean_shortcode_after_header":"","ocean_has_shortcode":"","ocean_shortcode_after_title":"","ocean_shortcode_before_footer_widgets":"","ocean_shortcode_after_footer_widgets":"","ocean_shortcode_before_footer_bottom":"","ocean_shortcode_after_footer_bottom":"","ocean_display_top_bar":"default","ocean_display_header":"default","ocean_header_style":"","ocean_center_header_left_menu":"0","ocean_custom_header_template":"0","ocean_custom_logo":0,"ocean_custom_retina_logo":0,"ocean_custom_logo_max_width":0,"ocean_custom_logo_tablet_max_width":0,"ocean_custom_logo_mobile_max_width":0,"ocean_custom_logo_max_height":0,"ocean_custom_logo_tablet_max_height":0,"ocean_custom_logo_mobile_max_height":0,"ocean_header_custom_menu":"0","ocean_menu_typo_font_family":"0","ocean_menu_typo_font_subset":"","ocean_menu_typo_font_size":0,"ocean_menu_typo_font_size_tablet":0,"ocean_menu_typo_font_size_mobile":0,"ocean_menu_typo_font_size_unit":"px","ocean_menu_typo_font_weight":"","ocean_menu_typo_font_weight_tablet":"","ocean_menu_typo_font_weight_mobile":"","ocean_menu_typo_transform":"","ocean_menu_typo_transform_tablet":"","ocean_menu_typo_transform_mobile":"","ocean_menu_typo_line_height":0,"ocean_menu_typo_line_height_tablet":0,"ocean_menu_typo_line_height_mobile":0,"ocean_menu_typo_line_height_unit":"","ocean_menu_typo_spacing":0,"ocean_menu_typo_spacing_tablet":0,"ocean_menu_typo_spacing_mobile":0,"ocean_menu_typo_spacing_unit":"","ocean_menu_link_color":"","ocean_menu_link_color_hover":"","ocean_menu_link_color_active":"","ocean_menu_link_background":"","ocean_menu_link_hover_background":"","ocean_menu_link_active_background":"","ocean_menu_social_links_bg":"","ocean_menu_social_hover_links_bg":"","ocean_menu_social_links_color":"","ocean_menu_social_hover_links_color":"","ocean_disable_title":"default","ocean_disable_heading":"default","ocean_post_title":"","ocean_post_subheading":"","ocean_post_title_style":"","ocean_post_title_background_color":"","ocean_post_title_background":0,"ocean_post_title_bg_image_position":"","ocean_post_title_bg_image_attachment":"","ocean_post_title_bg_image_repeat":"","ocean_post_title_bg_image_size":"","ocean_post_title_height":0,"ocean_post_title_bg_overlay":0.5,"ocean_post_title_bg_overlay_color":"","ocean_disable_breadcrumbs":"default","ocean_breadcrumbs_color":"","ocean_breadcrumbs_separator_color":"","ocean_breadcrumbs_links_color":"","ocean_breadcrumbs_links_hover_color":"","ocean_display_footer_widgets":"default","ocean_display_footer_bottom":"default","ocean_custom_footer_template":"0","ocean_post_oembed":"","ocean_post_self_hosted_media":"","ocean_post_video_embed":"","ocean_link_format":"","ocean_link_format_target":"self","ocean_quote_format":"","ocean_quote_format_link":"post","ocean_gallery_link_images":"off","ocean_gallery_id":[],"footnotes":""},"categories":[5],"tags":[],"class_list":["post-531","post","type-post","status-publish","format-standard","hentry","category-technologie","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Konfigurace reverzn\u00ed proxy Apache httpd pro Outlook Anywhere (RPC over HTTP) | Coffeespot<\/title>\n<meta name=\"description\" content=\"Exchange a slu\u017eby Outlook Anywhere, OWA a ActiveSync za reverzn\u00ed proxy pache httpd s WAF (web application firewallem).\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/\" \/>\n<meta property=\"og:locale\" content=\"cs_CZ\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Konfigurace reverzn\u00ed proxy Apache httpd pro Outlook Anywhere (RPC over HTTP) | Coffeespot\" \/>\n<meta property=\"og:description\" content=\"Exchange a slu\u017eby Outlook Anywhere, OWA a ActiveSync za reverzn\u00ed proxy pache httpd s WAF (web application firewallem).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/\" \/>\n<meta property=\"og:site_name\" content=\"Coffeespot\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-21T13:08:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-11T09:16:49+00:00\" \/>\n<meta name=\"author\" content=\"Petr \u0160antr\u016f\u010dek\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Napsal(a)\" \/>\n\t<meta name=\"twitter:data1\" content=\"Petr \u0160antr\u016f\u010dek\" \/>\n\t<meta name=\"twitter:label2\" content=\"Odhadovan\u00e1 doba \u010dten\u00ed\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minuty\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/\"},\"author\":{\"name\":\"Petr \u0160antr\u016f\u010dek\",\"@id\":\"https:\/\/blog.exterra-services.cz\/#\/schema\/person\/9d7d8c191f609a8a425d4c493eeee788\"},\"headline\":\"Konfigurace reverzn\u00ed proxy Apache httpd pro Outlook Anywhere (RPC over HTTP)\",\"datePublished\":\"2022-02-21T13:08:16+00:00\",\"dateModified\":\"2022-03-11T09:16:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/\"},\"wordCount\":216,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/blog.exterra-services.cz\/#\/schema\/person\/9d7d8c191f609a8a425d4c493eeee788\"},\"articleSection\":[\"Technologie\"],\"inLanguage\":\"cs\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/\",\"url\":\"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/\",\"name\":\"Konfigurace reverzn\u00ed proxy Apache httpd pro Outlook Anywhere (RPC over HTTP) | Coffeespot\",\"isPartOf\":{\"@id\":\"https:\/\/blog.exterra-services.cz\/#website\"},\"datePublished\":\"2022-02-21T13:08:16+00:00\",\"dateModified\":\"2022-03-11T09:16:49+00:00\",\"description\":\"Exchange a slu\u017eby Outlook Anywhere, OWA a ActiveSync za reverzn\u00ed proxy pache httpd s WAF (web application firewallem).\",\"breadcrumb\":{\"@id\":\"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/#breadcrumb\"},\"inLanguage\":\"cs\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blog.exterra-services.cz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Konfigurace reverzn\u00ed proxy Apache httpd pro Outlook Anywhere (RPC over HTTP)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blog.exterra-services.cz\/#website\",\"url\":\"https:\/\/blog.exterra-services.cz\/\",\"name\":\"Coffeespot\",\"description\":\"novinky z IT sv\u011bta\",\"publisher\":{\"@id\":\"https:\/\/blog.exterra-services.cz\/#\/schema\/person\/9d7d8c191f609a8a425d4c493eeee788\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blog.exterra-services.cz\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"cs\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/blog.exterra-services.cz\/#\/schema\/person\/9d7d8c191f609a8a425d4c493eeee788\",\"name\":\"Petr \u0160antr\u016f\u010dek\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"cs\",\"@id\":\"https:\/\/blog.exterra-services.cz\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/154c38d0d2d25a88896d979541de331f6606987733e06f398d3552a6871e5b77?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/154c38d0d2d25a88896d979541de331f6606987733e06f398d3552a6871e5b77?s=96&d=mm&r=g\",\"caption\":\"Petr \u0160antr\u016f\u010dek\"},\"logo\":{\"@id\":\"https:\/\/blog.exterra-services.cz\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/www.exterra-services.cz\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Konfigurace reverzn\u00ed proxy Apache httpd pro Outlook Anywhere (RPC over HTTP) | Coffeespot","description":"Exchange a slu\u017eby Outlook Anywhere, OWA a ActiveSync za reverzn\u00ed proxy pache httpd s WAF (web application firewallem).","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/","og_locale":"cs_CZ","og_type":"article","og_title":"Konfigurace reverzn\u00ed proxy Apache httpd pro Outlook Anywhere (RPC over HTTP) | Coffeespot","og_description":"Exchange a slu\u017eby Outlook Anywhere, OWA a ActiveSync za reverzn\u00ed proxy pache httpd s WAF (web application firewallem).","og_url":"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/","og_site_name":"Coffeespot","article_published_time":"2022-02-21T13:08:16+00:00","article_modified_time":"2022-03-11T09:16:49+00:00","author":"Petr \u0160antr\u016f\u010dek","twitter_card":"summary_large_image","twitter_misc":{"Napsal(a)":"Petr \u0160antr\u016f\u010dek","Odhadovan\u00e1 doba \u010dten\u00ed":"3 minuty"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/#article","isPartOf":{"@id":"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/"},"author":{"name":"Petr \u0160antr\u016f\u010dek","@id":"https:\/\/blog.exterra-services.cz\/#\/schema\/person\/9d7d8c191f609a8a425d4c493eeee788"},"headline":"Konfigurace reverzn\u00ed proxy Apache httpd pro Outlook Anywhere (RPC over HTTP)","datePublished":"2022-02-21T13:08:16+00:00","dateModified":"2022-03-11T09:16:49+00:00","mainEntityOfPage":{"@id":"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/"},"wordCount":216,"commentCount":0,"publisher":{"@id":"https:\/\/blog.exterra-services.cz\/#\/schema\/person\/9d7d8c191f609a8a425d4c493eeee788"},"articleSection":["Technologie"],"inLanguage":"cs","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/","url":"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/","name":"Konfigurace reverzn\u00ed proxy Apache httpd pro Outlook Anywhere (RPC over HTTP) | Coffeespot","isPartOf":{"@id":"https:\/\/blog.exterra-services.cz\/#website"},"datePublished":"2022-02-21T13:08:16+00:00","dateModified":"2022-03-11T09:16:49+00:00","description":"Exchange a slu\u017eby Outlook Anywhere, OWA a ActiveSync za reverzn\u00ed proxy pache httpd s WAF (web application firewallem).","breadcrumb":{"@id":"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/#breadcrumb"},"inLanguage":"cs","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/blog.exterra-services.cz\/index.php\/2022\/02\/21\/konfigurace-reverzni-proxy-apache-httpd-pro-outlook-anywhere-rpc-over-http\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blog.exterra-services.cz\/"},{"@type":"ListItem","position":2,"name":"Konfigurace reverzn\u00ed proxy Apache httpd pro Outlook Anywhere (RPC over HTTP)"}]},{"@type":"WebSite","@id":"https:\/\/blog.exterra-services.cz\/#website","url":"https:\/\/blog.exterra-services.cz\/","name":"Coffeespot","description":"novinky z IT sv\u011bta","publisher":{"@id":"https:\/\/blog.exterra-services.cz\/#\/schema\/person\/9d7d8c191f609a8a425d4c493eeee788"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blog.exterra-services.cz\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"cs"},{"@type":["Person","Organization"],"@id":"https:\/\/blog.exterra-services.cz\/#\/schema\/person\/9d7d8c191f609a8a425d4c493eeee788","name":"Petr \u0160antr\u016f\u010dek","image":{"@type":"ImageObject","inLanguage":"cs","@id":"https:\/\/blog.exterra-services.cz\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/154c38d0d2d25a88896d979541de331f6606987733e06f398d3552a6871e5b77?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/154c38d0d2d25a88896d979541de331f6606987733e06f398d3552a6871e5b77?s=96&d=mm&r=g","caption":"Petr \u0160antr\u016f\u010dek"},"logo":{"@id":"https:\/\/blog.exterra-services.cz\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/www.exterra-services.cz"]}]}},"_links":{"self":[{"href":"https:\/\/blog.exterra-services.cz\/index.php\/wp-json\/wp\/v2\/posts\/531","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blog.exterra-services.cz\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.exterra-services.cz\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.exterra-services.cz\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.exterra-services.cz\/index.php\/wp-json\/wp\/v2\/comments?post=531"}],"version-history":[{"count":0,"href":"https:\/\/blog.exterra-services.cz\/index.php\/wp-json\/wp\/v2\/posts\/531\/revisions"}],"wp:attachment":[{"href":"https:\/\/blog.exterra-services.cz\/index.php\/wp-json\/wp\/v2\/media?parent=531"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.exterra-services.cz\/index.php\/wp-json\/wp\/v2\/categories?post=531"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.exterra-services.cz\/index.php\/wp-json\/wp\/v2\/tags?post=531"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}