Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTTPS dla youtube'a #50

Merged
merged 4 commits into from
Mar 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _plugins/youtube.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def initialize(tagName, markup, tokens)
end

def render(context)
"<iframe width=\"#{@width}\" height=\"#{@height}\" src=\"http://www.youtube.com/embed/#{@id}?color=white&theme=light\"></iframe>"
"<iframe width=\"#{@width}\" height=\"#{@height}\" src=\"https://www.youtube.com/embed/#{@id}?color=white&theme=light\"></iframe>"
end

Liquid::Template.register_tag "youtube", self
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,10 @@ author:

## Notatka ze spotkania 'Architektura w Azure - Incoming network traffic' #azuresolutionsarchitect

<iframe width="560"
height="315"
src="https://youtu.be/EMdhcEhaCGw"
frameborder="0"
allow="autoplay; encrypted-media"
allowfullscreen></iframe>
{% youtube EMdhcEhaCGw %}

[Prezentacja](https://www.slideshare.net/AgnieszkaCent/azure-incoming-network-traffic)


### O czym dyskutowaliśmy:
- o modelu OSI - szczególnie warstwie transportowej i aplikacji, które są wykorzystywane przez Front Door, Application Gateway, Traffic Manager i Load Balancer
- o globalnych i regionalnych usługach oraz jaki ma to wpływ na odporność na awarie Data Center
Expand Down