AWS: How to redirect HTTP to HTTPS on App Load Balancer?How to redirect HTTP to HTTPS on AWS Application Load Balancer?In Nginx, how can I rewrite all http requests to https while maintaining sub-domain?Redirect, Change URLs or Redirect HTTP to HTTPS in Apache - Everything You Ever Wanted to Know About Mod_Rewrite Rules but Were Afraid to Ask403 forbidden error going through aws load balancerPossible to redirect from HTTPS to HTTP behind load-balancer?How to add HTTPS to Elastic Load Balancer?Elastic beanstalk loadbalancer configure redirect from http to httpsForce HTTP to HTTPS redirectApache (http) behind load balancer (http/https) - Redirect does not preserve httpsHow to redirect HTTP to HTTPS on AWS Application Load Balancer?F5 BIG-IP monitor to detect http to https redirects

Apply a different color ramp to subset of categorized symbols in QGIS?

What makes accurate emulation of old systems a difficult task?

Multiple fireplaces in an apartment building?

Why did C use the -> operator instead of reusing the . operator?

How much of a wave function must reside inside event horizon for it to be consumed by the black hole?

Who's the random kid standing in the gathering at the end?

How important is it that $TERM is correct?

What does "function" actually mean in music?

Is this a typo in Section 1.8.1 Mathematics for Computer Science?

Does a large simulator bay have standard public address announcements?

Could moose/elk survive in the Amazon forest?

Older movie/show about humans on derelict alien warship which refuels by passing through a star

Will I lose my paid in full property

Would the change in enthalpy (ΔH) for the dissolution of urea in water be positive or negative?

Why must Chinese maps be obfuscated?

Is there a better way to say "see someone's dreams"?

What was Apollo 13's "Little Jolt" after MECO?

How can I get rid of an unhelpful parallel branch when unpivoting a single row?

Check if a string is entirely made of the same substring

How to be good at coming up with counter example in Topology

A faster way to compute the largest prime factor

My bank got bought out, am I now going to have to start filing tax returns in a different state?

How to pronounce 'c++' in Spanish

How do I deal with a coworker that keeps asking to make small superficial changes to a report, and it is seriously triggering my anxiety?



AWS: How to redirect HTTP to HTTPS on App Load Balancer?


How to redirect HTTP to HTTPS on AWS Application Load Balancer?In Nginx, how can I rewrite all http requests to https while maintaining sub-domain?Redirect, Change URLs or Redirect HTTP to HTTPS in Apache - Everything You Ever Wanted to Know About Mod_Rewrite Rules but Were Afraid to Ask403 forbidden error going through aws load balancerPossible to redirect from HTTPS to HTTP behind load-balancer?How to add HTTPS to Elastic Load Balancer?Elastic beanstalk loadbalancer configure redirect from http to httpsForce HTTP to HTTPS redirectApache (http) behind load balancer (http/https) - Redirect does not preserve httpsHow to redirect HTTP to HTTPS on AWS Application Load Balancer?F5 BIG-IP monitor to detect http to https redirects






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








2















I have a number of IIS web servers behind an App Load Balancer (ALB). The web servers all have self-signed SSL certificate installed and redirect from HTTP to HTTPS using URL rewrite module properly setup:



enter image description here



If I directly access these web servers, HTTP will be redirected to HTTPS.



The protocol used by the target group is HTTPS.The ALB listens on both HTTP and HTTPS. It has a SSL certificate on "www.mysite.com".



However, when I tried to access the ALB using HTTP, it is not redirected to HTTPS. Now that the servers does redirect properly, why doesn't the ALB?










share|improve this question



















  • 1





    Your target group is probably pointing to port 443. That way your webservers always receive requests on port 443 from the ALB, so they don't do any redirect.

    – Sergey Kovalev
    Sep 26 '17 at 7:44











  • You are right Sergey. So it should use port 80?

    – Silly Dude
    Sep 27 '17 at 2:22











  • But if I use port 80 on the target group, the ALB will insist in talking to the servers on port 80, while the servers insist in 443, the ALB will simply return "This site can’t be reached". I tried.

    – Silly Dude
    Sep 27 '17 at 3:00






  • 1





    One of the most popular workarounds is to put CloudFront in front of your website/ALB and tell CloudFront to redirect HTTP to HTTPS.

    – Sergey Kovalev
    Sep 27 '17 at 17:55

















2















I have a number of IIS web servers behind an App Load Balancer (ALB). The web servers all have self-signed SSL certificate installed and redirect from HTTP to HTTPS using URL rewrite module properly setup:



enter image description here



If I directly access these web servers, HTTP will be redirected to HTTPS.



The protocol used by the target group is HTTPS.The ALB listens on both HTTP and HTTPS. It has a SSL certificate on "www.mysite.com".



However, when I tried to access the ALB using HTTP, it is not redirected to HTTPS. Now that the servers does redirect properly, why doesn't the ALB?










share|improve this question



















  • 1





    Your target group is probably pointing to port 443. That way your webservers always receive requests on port 443 from the ALB, so they don't do any redirect.

    – Sergey Kovalev
    Sep 26 '17 at 7:44











  • You are right Sergey. So it should use port 80?

    – Silly Dude
    Sep 27 '17 at 2:22











  • But if I use port 80 on the target group, the ALB will insist in talking to the servers on port 80, while the servers insist in 443, the ALB will simply return "This site can’t be reached". I tried.

    – Silly Dude
    Sep 27 '17 at 3:00






  • 1





    One of the most popular workarounds is to put CloudFront in front of your website/ALB and tell CloudFront to redirect HTTP to HTTPS.

    – Sergey Kovalev
    Sep 27 '17 at 17:55













2












2








2


2






I have a number of IIS web servers behind an App Load Balancer (ALB). The web servers all have self-signed SSL certificate installed and redirect from HTTP to HTTPS using URL rewrite module properly setup:



enter image description here



If I directly access these web servers, HTTP will be redirected to HTTPS.



The protocol used by the target group is HTTPS.The ALB listens on both HTTP and HTTPS. It has a SSL certificate on "www.mysite.com".



However, when I tried to access the ALB using HTTP, it is not redirected to HTTPS. Now that the servers does redirect properly, why doesn't the ALB?










share|improve this question
















I have a number of IIS web servers behind an App Load Balancer (ALB). The web servers all have self-signed SSL certificate installed and redirect from HTTP to HTTPS using URL rewrite module properly setup:



enter image description here



If I directly access these web servers, HTTP will be redirected to HTTPS.



The protocol used by the target group is HTTPS.The ALB listens on both HTTP and HTTPS. It has a SSL certificate on "www.mysite.com".



However, when I tried to access the ALB using HTTP, it is not redirected to HTTPS. Now that the servers does redirect properly, why doesn't the ALB?







amazon-web-services https redirect amazon-alb






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Sep 27 '17 at 3:03







Silly Dude

















asked Sep 26 '17 at 4:27









Silly DudeSilly Dude

2301413




2301413







  • 1





    Your target group is probably pointing to port 443. That way your webservers always receive requests on port 443 from the ALB, so they don't do any redirect.

    – Sergey Kovalev
    Sep 26 '17 at 7:44











  • You are right Sergey. So it should use port 80?

    – Silly Dude
    Sep 27 '17 at 2:22











  • But if I use port 80 on the target group, the ALB will insist in talking to the servers on port 80, while the servers insist in 443, the ALB will simply return "This site can’t be reached". I tried.

    – Silly Dude
    Sep 27 '17 at 3:00






  • 1





    One of the most popular workarounds is to put CloudFront in front of your website/ALB and tell CloudFront to redirect HTTP to HTTPS.

    – Sergey Kovalev
    Sep 27 '17 at 17:55












  • 1





    Your target group is probably pointing to port 443. That way your webservers always receive requests on port 443 from the ALB, so they don't do any redirect.

    – Sergey Kovalev
    Sep 26 '17 at 7:44











  • You are right Sergey. So it should use port 80?

    – Silly Dude
    Sep 27 '17 at 2:22











  • But if I use port 80 on the target group, the ALB will insist in talking to the servers on port 80, while the servers insist in 443, the ALB will simply return "This site can’t be reached". I tried.

    – Silly Dude
    Sep 27 '17 at 3:00






  • 1





    One of the most popular workarounds is to put CloudFront in front of your website/ALB and tell CloudFront to redirect HTTP to HTTPS.

    – Sergey Kovalev
    Sep 27 '17 at 17:55







1




1





Your target group is probably pointing to port 443. That way your webservers always receive requests on port 443 from the ALB, so they don't do any redirect.

– Sergey Kovalev
Sep 26 '17 at 7:44





Your target group is probably pointing to port 443. That way your webservers always receive requests on port 443 from the ALB, so they don't do any redirect.

– Sergey Kovalev
Sep 26 '17 at 7:44













You are right Sergey. So it should use port 80?

– Silly Dude
Sep 27 '17 at 2:22





You are right Sergey. So it should use port 80?

– Silly Dude
Sep 27 '17 at 2:22













But if I use port 80 on the target group, the ALB will insist in talking to the servers on port 80, while the servers insist in 443, the ALB will simply return "This site can’t be reached". I tried.

– Silly Dude
Sep 27 '17 at 3:00





But if I use port 80 on the target group, the ALB will insist in talking to the servers on port 80, while the servers insist in 443, the ALB will simply return "This site can’t be reached". I tried.

– Silly Dude
Sep 27 '17 at 3:00




1




1





One of the most popular workarounds is to put CloudFront in front of your website/ALB and tell CloudFront to redirect HTTP to HTTPS.

– Sergey Kovalev
Sep 27 '17 at 17:55





One of the most popular workarounds is to put CloudFront in front of your website/ALB and tell CloudFront to redirect HTTP to HTTPS.

– Sergey Kovalev
Sep 27 '17 at 17:55










2 Answers
2






active

oldest

votes


















1














It's now possible to directly do some redirection in any ALB rule, see related AWS announcement.



To unconditionally redirect all queries from HTTP to HTTPS, you have to configure the HTTP listener with only the default rule/action to permanently redirect (301) all request with the same host, path and query on the HTTPS port (typically: 443) with the HTTPS protocol:
AWS ALB HTTP to HTTPS configuration with permanent redirect






share|improve this answer






























    0














    Assuming that you are running Microsoft Windows in an EC2 instance, and you are using IIS to configure two web sites, siteA and siteB. Set up siteA to bind at port 81 and siteB to bind at port 82.



    STEP 1:

    In AWS console, select "Target Groups" under "Load Balancing". Create two target groups:

    1. siteA-target-group with your web server instance ID and port 81

    2. siteB-target-group with your web server instance ID and port 82

    Note: you can add more web server instances in the target group for load balancing and failover purposes.



    STEP 2:

    In AWS ALB, there are two listeners, one for port 80 and one for port 443.



    For HTTP (80), add 2 rules:

    1. if host is siteA.com, redirect to https://#host:443/#path?#query

    2. if host is siteB.com, redirect to https://#host:443/#path?#query
    enter image description here



    For HTTPS (443), add 2 rules:

    1. if host is siteA.com, forward to siteA-target-group

    2. if host is siteB.com, forward to siteB-target-group



    STEP 3:

    On your DNS provider, set up a CNAME for siteA.com to point at the ALB's DNS name. Similarly, set up a CNAME for siteB.com.



    When the above setup is completed, test connecting to http://siteA.com or http://siteB.com



    i) traffic hits the ALB port 80

    ii) host header matches the rule "siteA.com" and redirect traffic to port 443

    iii) traffic hits the ALB port 443

    iv) host header matches the rule "siteA.com" and forward to target group siteA-target-group

    v) siteA-target-group points at port 81 on the web server and the page is served.






    share|improve this answer

























      Your Answer








      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "2"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f875477%2faws-how-to-redirect-http-to-https-on-app-load-balancer%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      1














      It's now possible to directly do some redirection in any ALB rule, see related AWS announcement.



      To unconditionally redirect all queries from HTTP to HTTPS, you have to configure the HTTP listener with only the default rule/action to permanently redirect (301) all request with the same host, path and query on the HTTPS port (typically: 443) with the HTTPS protocol:
      AWS ALB HTTP to HTTPS configuration with permanent redirect






      share|improve this answer



























        1














        It's now possible to directly do some redirection in any ALB rule, see related AWS announcement.



        To unconditionally redirect all queries from HTTP to HTTPS, you have to configure the HTTP listener with only the default rule/action to permanently redirect (301) all request with the same host, path and query on the HTTPS port (typically: 443) with the HTTPS protocol:
        AWS ALB HTTP to HTTPS configuration with permanent redirect






        share|improve this answer

























          1












          1








          1







          It's now possible to directly do some redirection in any ALB rule, see related AWS announcement.



          To unconditionally redirect all queries from HTTP to HTTPS, you have to configure the HTTP listener with only the default rule/action to permanently redirect (301) all request with the same host, path and query on the HTTPS port (typically: 443) with the HTTPS protocol:
          AWS ALB HTTP to HTTPS configuration with permanent redirect






          share|improve this answer













          It's now possible to directly do some redirection in any ALB rule, see related AWS announcement.



          To unconditionally redirect all queries from HTTP to HTTPS, you have to configure the HTTP listener with only the default rule/action to permanently redirect (301) all request with the same host, path and query on the HTTPS port (typically: 443) with the HTTPS protocol:
          AWS ALB HTTP to HTTPS configuration with permanent redirect







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Aug 19 '18 at 22:25









          Sylvain BugatSylvain Bugat

          11114




          11114























              0














              Assuming that you are running Microsoft Windows in an EC2 instance, and you are using IIS to configure two web sites, siteA and siteB. Set up siteA to bind at port 81 and siteB to bind at port 82.



              STEP 1:

              In AWS console, select "Target Groups" under "Load Balancing". Create two target groups:

              1. siteA-target-group with your web server instance ID and port 81

              2. siteB-target-group with your web server instance ID and port 82

              Note: you can add more web server instances in the target group for load balancing and failover purposes.



              STEP 2:

              In AWS ALB, there are two listeners, one for port 80 and one for port 443.



              For HTTP (80), add 2 rules:

              1. if host is siteA.com, redirect to https://#host:443/#path?#query

              2. if host is siteB.com, redirect to https://#host:443/#path?#query
              enter image description here



              For HTTPS (443), add 2 rules:

              1. if host is siteA.com, forward to siteA-target-group

              2. if host is siteB.com, forward to siteB-target-group



              STEP 3:

              On your DNS provider, set up a CNAME for siteA.com to point at the ALB's DNS name. Similarly, set up a CNAME for siteB.com.



              When the above setup is completed, test connecting to http://siteA.com or http://siteB.com



              i) traffic hits the ALB port 80

              ii) host header matches the rule "siteA.com" and redirect traffic to port 443

              iii) traffic hits the ALB port 443

              iv) host header matches the rule "siteA.com" and forward to target group siteA-target-group

              v) siteA-target-group points at port 81 on the web server and the page is served.






              share|improve this answer





























                0














                Assuming that you are running Microsoft Windows in an EC2 instance, and you are using IIS to configure two web sites, siteA and siteB. Set up siteA to bind at port 81 and siteB to bind at port 82.



                STEP 1:

                In AWS console, select "Target Groups" under "Load Balancing". Create two target groups:

                1. siteA-target-group with your web server instance ID and port 81

                2. siteB-target-group with your web server instance ID and port 82

                Note: you can add more web server instances in the target group for load balancing and failover purposes.



                STEP 2:

                In AWS ALB, there are two listeners, one for port 80 and one for port 443.



                For HTTP (80), add 2 rules:

                1. if host is siteA.com, redirect to https://#host:443/#path?#query

                2. if host is siteB.com, redirect to https://#host:443/#path?#query
                enter image description here



                For HTTPS (443), add 2 rules:

                1. if host is siteA.com, forward to siteA-target-group

                2. if host is siteB.com, forward to siteB-target-group



                STEP 3:

                On your DNS provider, set up a CNAME for siteA.com to point at the ALB's DNS name. Similarly, set up a CNAME for siteB.com.



                When the above setup is completed, test connecting to http://siteA.com or http://siteB.com



                i) traffic hits the ALB port 80

                ii) host header matches the rule "siteA.com" and redirect traffic to port 443

                iii) traffic hits the ALB port 443

                iv) host header matches the rule "siteA.com" and forward to target group siteA-target-group

                v) siteA-target-group points at port 81 on the web server and the page is served.






                share|improve this answer



























                  0












                  0








                  0







                  Assuming that you are running Microsoft Windows in an EC2 instance, and you are using IIS to configure two web sites, siteA and siteB. Set up siteA to bind at port 81 and siteB to bind at port 82.



                  STEP 1:

                  In AWS console, select "Target Groups" under "Load Balancing". Create two target groups:

                  1. siteA-target-group with your web server instance ID and port 81

                  2. siteB-target-group with your web server instance ID and port 82

                  Note: you can add more web server instances in the target group for load balancing and failover purposes.



                  STEP 2:

                  In AWS ALB, there are two listeners, one for port 80 and one for port 443.



                  For HTTP (80), add 2 rules:

                  1. if host is siteA.com, redirect to https://#host:443/#path?#query

                  2. if host is siteB.com, redirect to https://#host:443/#path?#query
                  enter image description here



                  For HTTPS (443), add 2 rules:

                  1. if host is siteA.com, forward to siteA-target-group

                  2. if host is siteB.com, forward to siteB-target-group



                  STEP 3:

                  On your DNS provider, set up a CNAME for siteA.com to point at the ALB's DNS name. Similarly, set up a CNAME for siteB.com.



                  When the above setup is completed, test connecting to http://siteA.com or http://siteB.com



                  i) traffic hits the ALB port 80

                  ii) host header matches the rule "siteA.com" and redirect traffic to port 443

                  iii) traffic hits the ALB port 443

                  iv) host header matches the rule "siteA.com" and forward to target group siteA-target-group

                  v) siteA-target-group points at port 81 on the web server and the page is served.






                  share|improve this answer















                  Assuming that you are running Microsoft Windows in an EC2 instance, and you are using IIS to configure two web sites, siteA and siteB. Set up siteA to bind at port 81 and siteB to bind at port 82.



                  STEP 1:

                  In AWS console, select "Target Groups" under "Load Balancing". Create two target groups:

                  1. siteA-target-group with your web server instance ID and port 81

                  2. siteB-target-group with your web server instance ID and port 82

                  Note: you can add more web server instances in the target group for load balancing and failover purposes.



                  STEP 2:

                  In AWS ALB, there are two listeners, one for port 80 and one for port 443.



                  For HTTP (80), add 2 rules:

                  1. if host is siteA.com, redirect to https://#host:443/#path?#query

                  2. if host is siteB.com, redirect to https://#host:443/#path?#query
                  enter image description here



                  For HTTPS (443), add 2 rules:

                  1. if host is siteA.com, forward to siteA-target-group

                  2. if host is siteB.com, forward to siteB-target-group



                  STEP 3:

                  On your DNS provider, set up a CNAME for siteA.com to point at the ALB's DNS name. Similarly, set up a CNAME for siteB.com.



                  When the above setup is completed, test connecting to http://siteA.com or http://siteB.com



                  i) traffic hits the ALB port 80

                  ii) host header matches the rule "siteA.com" and redirect traffic to port 443

                  iii) traffic hits the ALB port 443

                  iv) host header matches the rule "siteA.com" and forward to target group siteA-target-group

                  v) siteA-target-group points at port 81 on the web server and the page is served.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Apr 18 at 23:10









                  bummi

                  164229




                  164229










                  answered Apr 18 at 19:37









                  John NgJohn Ng

                  11




                  11



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Server Fault!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f875477%2faws-how-to-redirect-http-to-https-on-app-load-balancer%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Club Baloncesto Breogán Índice Historia | Pavillón | Nome | O Breogán na cultura popular | Xogadores | Adestradores | Presidentes | Palmarés | Historial | Líderes | Notas | Véxase tamén | Menú de navegacióncbbreogan.galCadroGuía oficial da ACB 2009-10, páxina 201Guía oficial ACB 1992, páxina 183. Editorial DB.É de 6.500 espectadores sentados axeitándose á última normativa"Estudiantes Junior, entre as mellores canteiras"o orixinalHemeroteca El Mundo Deportivo, 16 setembro de 1970, páxina 12Historia do BreogánAlfredo Pérez, o último canoneiroHistoria C.B. BreogánHemeroteca de El Mundo DeportivoJimmy Wright, norteamericano do Breogán deixará Lugo por ameazas de morteResultados de Breogán en 1986-87Resultados de Breogán en 1990-91Ficha de Velimir Perasović en acb.comResultados de Breogán en 1994-95Breogán arrasa al Barça. "El Mundo Deportivo", 27 de setembro de 1999, páxina 58CB Breogán - FC BarcelonaA FEB invita a participar nunha nova Liga EuropeaCharlie Bell na prensa estatalMáximos anotadores 2005Tempada 2005-06 : Tódolos Xogadores da Xornada""Non quero pensar nunha man negra, mais pregúntome que está a pasar""o orixinalRaúl López, orgulloso dos xogadores, presume da boa saúde económica do BreogánJulio González confirma que cesa como presidente del BreogánHomenaxe a Lisardo GómezA tempada do rexurdimento celesteEntrevista a Lisardo GómezEl COB dinamita el Pazo para forzar el quinto (69-73)Cafés Candelas, patrocinador del CB Breogán"Suso Lázare, novo presidente do Breogán"o orixinalCafés Candelas Breogán firma el mayor triunfo de la historiaEl Breogán realizará 17 homenajes por su cincuenta aniversario"O Breogán honra ao seu fundador e primeiro presidente"o orixinalMiguel Giao recibiu a homenaxe do PazoHomenaxe aos primeiros gladiadores celestesO home que nos amosa como ver o Breo co corazónTita Franco será homenaxeada polos #50anosdeBreoJulio Vila recibirá unha homenaxe in memoriam polos #50anosdeBreo"O Breogán homenaxeará aos seus aboados máis veteráns"Pechada ovación a «Capi» Sanmartín e Ricardo «Corazón de González»Homenaxe por décadas de informaciónPaco García volve ao Pazo con motivo do 50 aniversario"Resultados y clasificaciones""O Cafés Candelas Breogán, campión da Copa Princesa""O Cafés Candelas Breogán, equipo ACB"C.B. Breogán"Proxecto social"o orixinal"Centros asociados"o orixinalFicha en imdb.comMario Camus trata la recuperación del amor en 'La vieja música', su última película"Páxina web oficial""Club Baloncesto Breogán""C. B. Breogán S.A.D."eehttp://www.fegaba.com

                      Vilaño, A Laracha Índice Patrimonio | Lugares e parroquias | Véxase tamén | Menú de navegación43°14′52″N 8°36′03″O / 43.24775, -8.60070

                      Cegueira Índice Epidemioloxía | Deficiencia visual | Tipos de cegueira | Principais causas de cegueira | Tratamento | Técnicas de adaptación e axudas | Vida dos cegos | Primeiros auxilios | Crenzas respecto das persoas cegas | Crenzas das persoas cegas | O neno deficiente visual | Aspectos psicolóxicos da cegueira | Notas | Véxase tamén | Menú de navegación54.054.154.436928256blindnessDicionario da Real Academia GalegaPortal das Palabras"International Standards: Visual Standards — Aspects and Ranges of Vision Loss with Emphasis on Population Surveys.""Visual impairment and blindness""Presentan un plan para previr a cegueira"o orixinalACCDV Associació Catalana de Cecs i Disminuïts Visuals - PMFTrachoma"Effect of gene therapy on visual function in Leber's congenital amaurosis"1844137110.1056/NEJMoa0802268Cans guía - os mellores amigos dos cegosArquivadoEscola de cans guía para cegos en Mortágua, PortugalArquivado"Tecnología para ciegos y deficientes visuales. Recopilación de recursos gratuitos en la Red""Colorino""‘COL.diesis’, escuchar los sonidos del color""COL.diesis: Transforming Colour into Melody and Implementing the Result in a Colour Sensor Device"o orixinal"Sistema de desarrollo de sinestesia color-sonido para invidentes utilizando un protocolo de audio""Enseñanza táctil - geometría y color. Juegos didácticos para niños ciegos y videntes""Sistema Constanz"L'ocupació laboral dels cecs a l'Estat espanyol està pràcticament equiparada a la de les persones amb visió, entrevista amb Pedro ZuritaONCE (Organización Nacional de Cegos de España)Prevención da cegueiraDescrición de deficiencias visuais (Disc@pnet)Braillín, un boneco atractivo para calquera neno, con ou sen discapacidade, que permite familiarizarse co sistema de escritura e lectura brailleAxudas Técnicas36838ID00897494007150-90057129528256DOID:1432HP:0000618D001766C10.597.751.941.162C97109C0155020