Skip to content
This repository was archived by the owner on Nov 27, 2020. It is now read-only.

Commit c779374

Browse files
committed
minor #1083 Use HTTPS for links to the docs (bocharsky-bw)
This PR was submitted for the 3.3 branch but it was merged into the 2.7 branch instead (closes #1083). Discussion ---------- Use HTTPS for links to the docs It was done in Symfony Demo symfony/demo#550 Commits ------- 4d14b9c Use HTTPS for links to the docs
2 parents 3d8f5fd + 4d14b9c commit c779374

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

app/Resources/views/default/index.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</svg>
3737

3838
Read the documentation to learn
39-
<a href="http://symfony.com/doc/{{ constant('Symfony\\Component\\HttpKernel\\Kernel::VERSION')[:3] }}/page_creation.html">
39+
<a href="https://symfony.com/doc/{{ constant('Symfony\\Component\\HttpKernel\\Kernel::VERSION')[:3] }}/page_creation.html">
4040
How to create your first page in Symfony
4141
</a>
4242
</p>

app/config/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ imports:
44
- { resource: services.yml }
55

66
# Put parameters here that don't need to change on each machine where the app is deployed
7-
# http://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
7+
# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
88
parameters:
99
locale: en
1010

app/config/parameters.yml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is a "template" of what your parameters.yml file should look like
22
# Set parameters here that may be different on each deployment target of the app, e.g. development, staging, production.
3-
# http://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
3+
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
44
parameters:
55
database_host: 127.0.0.1
66
database_port: ~

app/config/security.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# To get started with security, check out the documentation:
2-
# http://symfony.com/doc/current/security.html
2+
# https://symfony.com/doc/current/security.html
33
security:
44

5-
# http://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded
5+
# https://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded
66
providers:
77
in_memory:
88
memory: ~
@@ -17,8 +17,8 @@ security:
1717
anonymous: ~
1818
# activate different ways to authenticate
1919

20-
# http://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
20+
# https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
2121
#http_basic: ~
2222

23-
# http://symfony.com/doc/current/cookbook/security/form_login_setup.html
23+
# https://symfony.com/doc/current/security/form_login_setup.html
2424
#form_login: ~

app/config/services.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Learn more about services, parameters and containers at
2-
# http://symfony.com/doc/current/service_container.html
2+
# https://symfony.com/doc/current/service_container.html
33
parameters:
44
#parameter_name: value
55

app/console

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?php
33

44
// if you don't want to setup permissions the proper way, just uncomment the following PHP line
5-
// read http://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup
5+
// read https://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup
66
// for more information
77
//umask(0000);
88

web/app_dev.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
use Symfony\Component\Debug\Debug;
55

66
// If you don't want to setup permissions the proper way, just uncomment the following PHP line
7-
// read http://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup
7+
// read https://symfony.com/doc/current/setup.html#checking-symfony-application-configuration-and-setup
88
// for more information
99
//umask(0000);
1010

0 commit comments

Comments
 (0)