Advertisement
trupsalms

Untitled

May 17th, 2022
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. # This file was automatically installed on 2022-05-17T03:53:45.913924
  2. upstream automx {
  3. server unix:/run/uwsgi/app/automx_instance/socket fail_timeout=0;
  4. }
  5.  
  6. server {
  7. listen 80;
  8. listen [::]:80;
  9. server_name autoconfig.tekexample.com;
  10. root /srv/automx/instance;
  11.  
  12. access_log /var/log/nginx/autoconfig.tekexample.com-access.log;
  13. error_log /var/log/nginx/autoconfig.tekexample.com-error.log;
  14.  
  15. location /mail/config-v1.1.xml {
  16. include uwsgi_params;
  17. uwsgi_pass automx;
  18. }
  19. }
  20.  
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement