Advertisement
Guest User

roundcube nginx config

a guest
Aug 21st, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. #
  2. # This file is managed by iRedMail Team "support@iredmail.org" with Ansible,
  3. # please do __NOT__ modify it manually.
  4. #
  5.  
  6. # Note: This file must be loaded before other virtual host config files,
  7. # HTTP
  8. server {
  9. listen 8090;
  10. listen [::]:8090;
  11.  
  12. server_name _;
  13.  
  14. index index.php index.html;
  15.  
  16. include /etc/nginx/templates/misc.tmpl;
  17. #include /etc/nginx/templates/ssl.tmpl;
  18.  
  19. # Load modular config files
  20. #include /opt/iredmail/custom/nginx/sites-conf.d/default-ssl/*.conf;
  21. #include /etc/nginx/sites-conf.d/default-ssl/*.conf;
  22.  
  23. include /etc/nginx/templates/roundcube-homepage.tmpl;
  24. root /opt/www/roundcubemail;
  25.  
  26.  
  27. # Redirect all insecure http:// requests to https://
  28. #return 301 https://$host$request_uri;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement