Task | Command |
---|---|
Install nginx: | apt-get install nginx |
Install php7: | apt-get install php7.0-fpm |
Set nginx.conf: | server_tokens off; gzip off; |
Add collectd deb to sources: | echo "deb xenial collectd-5.6" >> /etc/apt/sources.list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Database setup, edit as needed | |
$database_info = array(); | |
$database_info['hostname'] = "localhost"; | |
$database_info['database'] = "grid"; | |
$database_info['username'] = "grid"; | |
$database_info['password'] = "grid"; | |
//////////////////////////////////////////////// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--primary: #ddd; | |
--text-color: #ddd; | |
--background: #222; | |
--light-grey: #444; | |
--very-light-grey: #555; | |
--table-body-foreground: #ddd; | |
--table-header-foreground: #ddd; | |
--tabs-item-background--selected: #000; | |
--link-color: #ddd; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<NotepadPlus> | |
<UserLang name="ossl-lsl" ext="lsl" udlVersion="2.1"> | |
<Settings> | |
<Global caseIgnored="no" allowFoldOfComments="no" foldCompact="no" forcePureLC="0" decimalSeparator="0" /> | |
<Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="no" Keywords5="no" Keywords6="no" Keywords7="no" Keywords8="no" /> | |
</Settings> | |
<KeywordLists> | |
<Keywords name="Comments">00// 01 02 03/* 04*/</Keywords> | |
<Keywords name="Numbers, prefix1"></Keywords> | |
<Keywords name="Numbers, prefix2">0x</Keywords> |