Skip to content
Snippets Groups Projects
Select Git revision
  • e540dec97a6d78b23ef1ca537d586727a106222c
  • master default protected
  • postgres_integration
  • s3compatible
  • intros
  • bootstrap4
  • modules
7 results

db_schema.sql

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;
    	}
    
    }