Skip to content
Snippets Groups Projects
Select Git revision
  • c76ffd2bdfb6f72bbcef4244d9b998a33f3e1e6d
  • tardis default
  • online-lip-2020
  • ss18
  • ws18
  • master protected
  • ws17
  • ss17
  • ws16
  • ss16
  • ws15 protected
  • ss15 protected
  • ws14 protected
  • buildhauer protected
  • ss14 protected
15 results

linuxparty.sh

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    zabbix.conf 600 B
    location /zabbix {
    #        if ($scheme ~ ^http:){
    #            rewrite ^(.*)$  https://$host$1 permanent;
    #        }
    	root			/usr/share;
    	index			index.php;
    	error_page		403 404 502 503 504  /zabbix/index.php;
    
    	location ~ \.php$ {
    #		if (!-f $request_filename) { return 404; }
    #		expires			epoch;
    #		include			/etc/nginx/fastcgi_params;
    #		fastcgi_index	index.php;
    #		fastcgi_pass	unix:/var/run/php5-fpm.sock;
    		include uwsgi_params;
    		uwsgi_modifier1 14;
    		uwsgi_pass unix:///run/uwsgi/app/zabbix/zabbix.sock;
        }
    
    	location ~ \.(jpg|jpeg|gif|png|ico)$ {
    		access_log	off;
    		expires		33d;
    	}
    
    }