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

Commit bb6fb63

Browse files
committed
Use HTTPS for links to the docs
1 parent 889e6aa commit bb6fb63

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
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: 2 additions & 2 deletions
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

@@ -24,7 +24,7 @@ framework:
2424
default_locale: '%locale%'
2525
trusted_hosts: ~
2626
session:
27-
# http://symfony.com/doc/current/reference/configuration/framework.html#handler-id
27+
# https://symfony.com/doc/current/reference/configuration/framework.html#handler-id
2828
handler_id: session.handler.native_file
2929
save_path: '%kernel.project_dir%/var/sessions/%kernel.environment%'
3030
fragments: ~

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

bin/console

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use Symfony\Component\Console\Input\ArgvInput;
66
use Symfony\Component\Debug\Debug;
77

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

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)