Can I use variables in Nginx server block for SSL Cert and Key file?nginx with multiple servers and ssl cert, always use the same sslNeed NGINX Configured For Amazon EC2 / Wordpress - 502 bad gateway / 403 forbiddenCorrect configuration for SSL over 3 domains on same IP in nginxsetting up multiple ssl certificates on same server/ip on CENTOs with apache 2.2nginx domains using SSL cert listening but inaccessibleSSL connections reset with NginxNginX no longer redirecting non-www to www after Ubunutu restartIssue serving multiple SSL certs via nginxWhy Nginx calls for invalid certificate in non-existent subdomains just to redirect to 404?Nginx one SSL server interferes with all other http servers

Multi tool use
Multi tool use

What is the olden name for sideburns?

How well known and how commonly used was Huffman coding in 1979?

Why does this function call behave sensibly after calling it through a typecasted function pointer?

Quacks of Quedlingburg Crow Skull Set 2 Keep Drawing

Averting Real Women Don’t Wear Dresses

How to prove this countable intersection is empty?

Finding or mounting boot partition to create /boot/ssh

How should I behave to assure my friends that I am not after their money?

Why is Madam Hooch not a professor?

Can I use the PWM pins as regular digital input/output pins?

How can I create ribbons like these in Microsoft word 2010?

Are there any vegetarian astronauts?

Can a single server be associated with multiple domains?

What is the line crossing the Pacific Ocean that is shown on maps?

Alphabet completion rate

How can I convince my reader that I will not use a certain trope?

How could I adjust the text of a column in a table?

Is it allowed to spend a night in the first entry country before moving to the main destination?

How to determine what is the correct level of detail when modelling?

Can you sign using a digital signature itself?

Was touching your nose a greeting in second millenium Mesopotamia?

Analog is Obtuse!

I'm reinstalling my Linux desktop, how do I keep SSH logins working?

How do accents of a whole town drift?



Can I use variables in Nginx server block for SSL Cert and Key file?


nginx with multiple servers and ssl cert, always use the same sslNeed NGINX Configured For Amazon EC2 / Wordpress - 502 bad gateway / 403 forbiddenCorrect configuration for SSL over 3 domains on same IP in nginxsetting up multiple ssl certificates on same server/ip on CENTOs with apache 2.2nginx domains using SSL cert listening but inaccessibleSSL connections reset with NginxNginX no longer redirecting non-www to www after Ubunutu restartIssue serving multiple SSL certs via nginxWhy Nginx calls for invalid certificate in non-existent subdomains just to redirect to 404?Nginx one SSL server interferes with all other http servers






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I'm using Nginx Apache Reverse Proxy, I have multiple VHOSTS and I want to serve them all in a single nginx vhost file with support for SSL.



My server block is



 server 
listen 80;
server_name _;

root /var/www/$host/web;


access_log /var/log/mylogs/httpd/$host/access.log;

location /
try_files $uri $uri/ /index.php;


location ~ .php$
proxy_pass http://SERVERIP:8090;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;


location ~ /.
deny all;






This is working well without SSL for all sites BUT
when I do the same for SSL support below:



 server 
listen 80;
server_name _;

ssl on;
ssl_certificate /var/www/$host/ssl/$host-le.crt;
ssl_certificate_key /var/www/$host/ssl/$host-le.key;
root /var/www/$host/web;


access_log /var/log/mylogs/httpd/$host/access.log;

location /
try_files $uri $uri/ /index.php;


location ~ .php$
proxy_pass http://MYIP:8090;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;


location ~ /.
deny all;





I got errors something like this



ssl_certificate /var/www/$host/ssl/$host-le.crt not found
nginx config test failed


My vhost web files are in this format



/var/www/domain1.com/web
/var/www/domain2.com/web
/var/www/domain3.com/web



and their ssl cert and keys are in



/var/www/domain1.com/ssl
/var/www/domain2.com/ssl
/var/www/domain3.com/ssl



Please help me, I'm noob and still learning....










share|improve this question
























  • Have a look at this stackoverflow.com/questions/15414810/…. $host variable will contain the first server that is defined in your server block which is the value that server_name holds. This is not going to work for multiple domains the way you've configured nginx

    – Valentin Bajrami
    Oct 9 '17 at 9:20











  • Thanks for reply, Can I use $http_host instead?

    – Dark9Y8
    Oct 9 '17 at 9:25






  • 1





    No I don't think that works. The server_name doesn't resolve to the static name of your virtual web folder. Maybe this explains a bit better: drupal.org/node/1544144

    – Valentin Bajrami
    Oct 9 '17 at 9:36











  • Take a look at openresty-reference.readthedocs.io/en/latest/Directives/… This requires nginx patching or using OpenResty

    – Alexey Ten
    Oct 9 '17 at 16:02











  • Sounds like a hack. Where are the good old days when SSL certificates were read with root privileges which were dropped afterwards? Without knowing your business case and other requirements... what about one certificate for all domains? Certificates can be valid for multiple domains by listing them in their subject alternate name section. Let's encrypt supports up to 100 SAN entries.

    – blafasel
    Oct 9 '17 at 19:51


















1















I'm using Nginx Apache Reverse Proxy, I have multiple VHOSTS and I want to serve them all in a single nginx vhost file with support for SSL.



My server block is



 server 
listen 80;
server_name _;

root /var/www/$host/web;


access_log /var/log/mylogs/httpd/$host/access.log;

location /
try_files $uri $uri/ /index.php;


location ~ .php$
proxy_pass http://SERVERIP:8090;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;


location ~ /.
deny all;






This is working well without SSL for all sites BUT
when I do the same for SSL support below:



 server 
listen 80;
server_name _;

ssl on;
ssl_certificate /var/www/$host/ssl/$host-le.crt;
ssl_certificate_key /var/www/$host/ssl/$host-le.key;
root /var/www/$host/web;


access_log /var/log/mylogs/httpd/$host/access.log;

location /
try_files $uri $uri/ /index.php;


location ~ .php$
proxy_pass http://MYIP:8090;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;


location ~ /.
deny all;





I got errors something like this



ssl_certificate /var/www/$host/ssl/$host-le.crt not found
nginx config test failed


My vhost web files are in this format



/var/www/domain1.com/web
/var/www/domain2.com/web
/var/www/domain3.com/web



and their ssl cert and keys are in



/var/www/domain1.com/ssl
/var/www/domain2.com/ssl
/var/www/domain3.com/ssl



Please help me, I'm noob and still learning....










share|improve this question
























  • Have a look at this stackoverflow.com/questions/15414810/…. $host variable will contain the first server that is defined in your server block which is the value that server_name holds. This is not going to work for multiple domains the way you've configured nginx

    – Valentin Bajrami
    Oct 9 '17 at 9:20











  • Thanks for reply, Can I use $http_host instead?

    – Dark9Y8
    Oct 9 '17 at 9:25






  • 1





    No I don't think that works. The server_name doesn't resolve to the static name of your virtual web folder. Maybe this explains a bit better: drupal.org/node/1544144

    – Valentin Bajrami
    Oct 9 '17 at 9:36











  • Take a look at openresty-reference.readthedocs.io/en/latest/Directives/… This requires nginx patching or using OpenResty

    – Alexey Ten
    Oct 9 '17 at 16:02











  • Sounds like a hack. Where are the good old days when SSL certificates were read with root privileges which were dropped afterwards? Without knowing your business case and other requirements... what about one certificate for all domains? Certificates can be valid for multiple domains by listing them in their subject alternate name section. Let's encrypt supports up to 100 SAN entries.

    – blafasel
    Oct 9 '17 at 19:51














1












1








1








I'm using Nginx Apache Reverse Proxy, I have multiple VHOSTS and I want to serve them all in a single nginx vhost file with support for SSL.



My server block is



 server 
listen 80;
server_name _;

root /var/www/$host/web;


access_log /var/log/mylogs/httpd/$host/access.log;

location /
try_files $uri $uri/ /index.php;


location ~ .php$
proxy_pass http://SERVERIP:8090;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;


location ~ /.
deny all;






This is working well without SSL for all sites BUT
when I do the same for SSL support below:



 server 
listen 80;
server_name _;

ssl on;
ssl_certificate /var/www/$host/ssl/$host-le.crt;
ssl_certificate_key /var/www/$host/ssl/$host-le.key;
root /var/www/$host/web;


access_log /var/log/mylogs/httpd/$host/access.log;

location /
try_files $uri $uri/ /index.php;


location ~ .php$
proxy_pass http://MYIP:8090;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;


location ~ /.
deny all;





I got errors something like this



ssl_certificate /var/www/$host/ssl/$host-le.crt not found
nginx config test failed


My vhost web files are in this format



/var/www/domain1.com/web
/var/www/domain2.com/web
/var/www/domain3.com/web



and their ssl cert and keys are in



/var/www/domain1.com/ssl
/var/www/domain2.com/ssl
/var/www/domain3.com/ssl



Please help me, I'm noob and still learning....










share|improve this question
















I'm using Nginx Apache Reverse Proxy, I have multiple VHOSTS and I want to serve them all in a single nginx vhost file with support for SSL.



My server block is



 server 
listen 80;
server_name _;

root /var/www/$host/web;


access_log /var/log/mylogs/httpd/$host/access.log;

location /
try_files $uri $uri/ /index.php;


location ~ .php$
proxy_pass http://SERVERIP:8090;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;


location ~ /.
deny all;






This is working well without SSL for all sites BUT
when I do the same for SSL support below:



 server 
listen 80;
server_name _;

ssl on;
ssl_certificate /var/www/$host/ssl/$host-le.crt;
ssl_certificate_key /var/www/$host/ssl/$host-le.key;
root /var/www/$host/web;


access_log /var/log/mylogs/httpd/$host/access.log;

location /
try_files $uri $uri/ /index.php;


location ~ .php$
proxy_pass http://MYIP:8090;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;


location ~ /.
deny all;





I got errors something like this



ssl_certificate /var/www/$host/ssl/$host-le.crt not found
nginx config test failed


My vhost web files are in this format



/var/www/domain1.com/web
/var/www/domain2.com/web
/var/www/domain3.com/web



and their ssl cert and keys are in



/var/www/domain1.com/ssl
/var/www/domain2.com/ssl
/var/www/domain3.com/ssl



Please help me, I'm noob and still learning....







nginx ssl virtualhost configuration reverse-proxy






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Oct 9 '17 at 9:29







Dark9Y8

















asked Oct 9 '17 at 9:06









Dark9Y8Dark9Y8

163 bronze badges




163 bronze badges












  • Have a look at this stackoverflow.com/questions/15414810/…. $host variable will contain the first server that is defined in your server block which is the value that server_name holds. This is not going to work for multiple domains the way you've configured nginx

    – Valentin Bajrami
    Oct 9 '17 at 9:20











  • Thanks for reply, Can I use $http_host instead?

    – Dark9Y8
    Oct 9 '17 at 9:25






  • 1





    No I don't think that works. The server_name doesn't resolve to the static name of your virtual web folder. Maybe this explains a bit better: drupal.org/node/1544144

    – Valentin Bajrami
    Oct 9 '17 at 9:36











  • Take a look at openresty-reference.readthedocs.io/en/latest/Directives/… This requires nginx patching or using OpenResty

    – Alexey Ten
    Oct 9 '17 at 16:02











  • Sounds like a hack. Where are the good old days when SSL certificates were read with root privileges which were dropped afterwards? Without knowing your business case and other requirements... what about one certificate for all domains? Certificates can be valid for multiple domains by listing them in their subject alternate name section. Let's encrypt supports up to 100 SAN entries.

    – blafasel
    Oct 9 '17 at 19:51


















  • Have a look at this stackoverflow.com/questions/15414810/…. $host variable will contain the first server that is defined in your server block which is the value that server_name holds. This is not going to work for multiple domains the way you've configured nginx

    – Valentin Bajrami
    Oct 9 '17 at 9:20











  • Thanks for reply, Can I use $http_host instead?

    – Dark9Y8
    Oct 9 '17 at 9:25






  • 1





    No I don't think that works. The server_name doesn't resolve to the static name of your virtual web folder. Maybe this explains a bit better: drupal.org/node/1544144

    – Valentin Bajrami
    Oct 9 '17 at 9:36











  • Take a look at openresty-reference.readthedocs.io/en/latest/Directives/… This requires nginx patching or using OpenResty

    – Alexey Ten
    Oct 9 '17 at 16:02











  • Sounds like a hack. Where are the good old days when SSL certificates were read with root privileges which were dropped afterwards? Without knowing your business case and other requirements... what about one certificate for all domains? Certificates can be valid for multiple domains by listing them in their subject alternate name section. Let's encrypt supports up to 100 SAN entries.

    – blafasel
    Oct 9 '17 at 19:51

















Have a look at this stackoverflow.com/questions/15414810/…. $host variable will contain the first server that is defined in your server block which is the value that server_name holds. This is not going to work for multiple domains the way you've configured nginx

– Valentin Bajrami
Oct 9 '17 at 9:20





Have a look at this stackoverflow.com/questions/15414810/…. $host variable will contain the first server that is defined in your server block which is the value that server_name holds. This is not going to work for multiple domains the way you've configured nginx

– Valentin Bajrami
Oct 9 '17 at 9:20













Thanks for reply, Can I use $http_host instead?

– Dark9Y8
Oct 9 '17 at 9:25





Thanks for reply, Can I use $http_host instead?

– Dark9Y8
Oct 9 '17 at 9:25




1




1





No I don't think that works. The server_name doesn't resolve to the static name of your virtual web folder. Maybe this explains a bit better: drupal.org/node/1544144

– Valentin Bajrami
Oct 9 '17 at 9:36





No I don't think that works. The server_name doesn't resolve to the static name of your virtual web folder. Maybe this explains a bit better: drupal.org/node/1544144

– Valentin Bajrami
Oct 9 '17 at 9:36













Take a look at openresty-reference.readthedocs.io/en/latest/Directives/… This requires nginx patching or using OpenResty

– Alexey Ten
Oct 9 '17 at 16:02





Take a look at openresty-reference.readthedocs.io/en/latest/Directives/… This requires nginx patching or using OpenResty

– Alexey Ten
Oct 9 '17 at 16:02













Sounds like a hack. Where are the good old days when SSL certificates were read with root privileges which were dropped afterwards? Without knowing your business case and other requirements... what about one certificate for all domains? Certificates can be valid for multiple domains by listing them in their subject alternate name section. Let's encrypt supports up to 100 SAN entries.

– blafasel
Oct 9 '17 at 19:51






Sounds like a hack. Where are the good old days when SSL certificates were read with root privileges which were dropped afterwards? Without knowing your business case and other requirements... what about one certificate for all domains? Certificates can be valid for multiple domains by listing them in their subject alternate name section. Let's encrypt supports up to 100 SAN entries.

– blafasel
Oct 9 '17 at 19:51











1 Answer
1






active

oldest

votes


















0














Use $ssl_server_name variable instead of $host.

It can be used since Nginx 1.15.9 and OpenSSL 1.0.2 version.
http://nginx.org/ru/docs/http/ngx_http_ssl_module.html



ssl_certificate $ssl_server_name.crt;
ssl_certificate_key $ssl_server_name.key;





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%2f877564%2fcan-i-use-variables-in-nginx-server-block-for-ssl-cert-and-key-file%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Use $ssl_server_name variable instead of $host.

    It can be used since Nginx 1.15.9 and OpenSSL 1.0.2 version.
    http://nginx.org/ru/docs/http/ngx_http_ssl_module.html



    ssl_certificate $ssl_server_name.crt;
    ssl_certificate_key $ssl_server_name.key;





    share|improve this answer





























      0














      Use $ssl_server_name variable instead of $host.

      It can be used since Nginx 1.15.9 and OpenSSL 1.0.2 version.
      http://nginx.org/ru/docs/http/ngx_http_ssl_module.html



      ssl_certificate $ssl_server_name.crt;
      ssl_certificate_key $ssl_server_name.key;





      share|improve this answer



























        0












        0








        0







        Use $ssl_server_name variable instead of $host.

        It can be used since Nginx 1.15.9 and OpenSSL 1.0.2 version.
        http://nginx.org/ru/docs/http/ngx_http_ssl_module.html



        ssl_certificate $ssl_server_name.crt;
        ssl_certificate_key $ssl_server_name.key;





        share|improve this answer















        Use $ssl_server_name variable instead of $host.

        It can be used since Nginx 1.15.9 and OpenSSL 1.0.2 version.
        http://nginx.org/ru/docs/http/ngx_http_ssl_module.html



        ssl_certificate $ssl_server_name.crt;
        ssl_certificate_key $ssl_server_name.key;






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Jun 10 at 10:05









        Thomas

        3,3484 gold badges15 silver badges25 bronze badges




        3,3484 gold badges15 silver badges25 bronze badges










        answered Jun 10 at 9:42









        user527115user527115

        1




        1



























            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%2f877564%2fcan-i-use-variables-in-nginx-server-block-for-ssl-cert-and-key-file%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







            DLlQZmEUBMF5bU3k TefuTWOacdSxU k6V1xAs,IhfYRLwVbQ4fTbuuQ 8JY,3LGb
            Rl3 rk 5lFnfk 25yAMl,L,rd IvQcQqSNaeTDWbJCDU,GoXLYNBwC07C3VOVs

            Popular posts from this blog

            RemoteApp sporadic failureWindows 2008 RemoteAPP client disconnects within a matter of minutesWhat is the minimum version of RDP supported by Server 2012 RDS?How to configure a Remoteapp server to increase stabilityMicrosoft RemoteApp Active SessionRDWeb TS connection broken for some users post RemoteApp certificate changeRemote Desktop Licensing, RemoteAPPRDS 2012 R2 some users are not able to logon after changed date and time on Connection BrokersWhat happens during Remote Desktop logon, and is there any logging?After installing RDS on WinServer 2016 I still can only connect with two users?RD Connection via RDGW to Session host is not connecting

            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