This file contains hidden or 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
| update-rc.d nginx defaults for Ubuntu 14.04 | |
| systemctl enable nginx.service for Centos 7 |
This file contains hidden or 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
| #! /bin/sh | |
| ### BEGIN INIT INFO | |
| # Provides: ghost | |
| # Required-Start: $network $syslog | |
| # Required-Stop: $network $syslog | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: Ghost Blogging Platform | |
| # Description: Ghost: Just a blogging platform | |
| ### END INIT INFO |
This file contains hidden or 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
| server { | |
| listen 443 ssl http2; ## listen for ipv4; this line is default and implied | |
| server_name www.sysmblo.com sysmblo.com; | |
| location / { | |
| proxy_set_header X-Real-IP $remote_addr; | |
| proxy_set_header Host $http_host; | |
| proxy_pass http://***.***.***.115:1337; | |
| } | |
| #rewrite sysmblo jadi https://www. |
This file contains hidden or 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
| server { | |
| listen 80 default_server; | |
| server_name domain.com *.domain.com; | |
| root /srv/www/domain.com/public; | |
| access_log /srv/www/domain.com/log/access.log; | |
| error_log /srv/www/domain.com/log/error.log; | |
| location / { | |
| index index.php; |
This file contains hidden or 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
| ./configure --prefix=/etc/nginx \ | |
| --sbin-path=/usr/sbin/nginx \ | |
| --conf-path=/etc/nginx/nginx.conf \ | |
| --error-log-path=/var/log/nginx/error.log \ | |
| --http-log-path=/var/log/nginx/access.log \ | |
| --pid-path=/var/run/nginx.pid \ | |
| --lock-path=/var/run/nginx.lock \ | |
| --http-client-body-temp-path=/var/cache/nginx/client_temp \ | |
| --http-proxy-temp-path=/var/cache/nginx/proxy_temp \ | |
| --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp \ |
This file contains hidden or 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 | |
| $links = array ( | |
| "http://www.nyomot.info/alasan-anda-wajib-pindah-windows-10/", | |
| "http://www.nyomot.info/gambar-keindahan-flora-dan-fauna-madagaskar/", | |
| "http://www.nyomot.info/periklanan-di-dunia-internet-akan-dikenakan-tarif-pajak/", | |
| "http://www.nyomot.info/rahasia-cepat-diterima-google-adsense/", | |
| "http://www.nyomot.info/5-macam-karakter-teman-sekolah-yang-paling-dikenal/", | |
| "http://www.nyomot.info/tips-mengawali-hari-dengan-mood-baik-2/", | |
| "http://www.nyomot.info/semakin-mudah-belanja-di-google-dengan-munculnya-tombol-beli/", | |
| "http://www.nyomot.info/my-talking-tom-terbaru-v2-3-1-apk/", |
NewerOlder