nginx_vhost_master.conf

Discussion in 'Tips/Tricks/Mods' started by durchd8.de, Oct 24, 2015.

  1. durchd8.de

    durchd8.de Member

    In the line:
    Code:
    <tmpl_if name='cgi' op='==' value='y'>
    
    1. I assume "cgi" refers to the cgi-checkbox in Ispconfig
    2. What does "op" refer to?
    3. How is the whole expression interpreted?
    TIA
    Martin
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    1) Yes
    2) op = opertor, in this case "==".
    3) In PHP Code:

    if(cgi == 'y') {
    .....
    }
     
  3. durchd8.de

    durchd8.de Member

    thank you
     

Share This Page