sudo yum update
sudo yum -y install httpd; systemctl start httpd; systemctl enable httpd; systemctl status httpd
| DAFTAR REPOSITORY LOKAL UBUNTU: | |
| REPOSITORY UBUNTU 14.04 SERVER ITB (INSTITUT TEKNOLOGI BANDUNG) | |
| deb ftp://ftp.itb.ac.id/pub/ubuntu trusty main restricted universe multiverse | |
| deb ftp://ftp.itb.ac.id/pub/ubuntu trusty-updates main restricted universe multiverse | |
| deb ftp://ftp.itb.ac.id/pub/ubuntu trusty-security main restricted universe multiverse | |
| deb ftp://ftp.itb.ac.id/pub/ubuntu trusty-backports main restricted universe multiverse | |
| deb ftp://ftp.itb.ac.id/pub/ubuntu trusty-proposed main restricted universe multiverse |
| <?php | |
| $configs = [ | |
| //Подключение к базе | |
| 'database' => [ | |
| 'host' => '127.0.0.1', | |
| 'username' => 'mysql', | |
| 'password' => 'mysql', | |
| 'database' => 'pw', | |
| ], |
| server { | |
| server_name panel.ramonymous.store; ##change to your domain | |
| root /var/www/panel/public/public/; ##change to your laravel project public dir | |
| index index.php index.html index.htm; | |
| location / { | |
| try_files $uri $uri/ /index.php$is_args$args; | |
| } | |
| # pass the PHP scripts to FastCGI server listening on /var/run/php-fpm/php-fpm.sock |
| #!/bin/bash | |
| # | |
| # Automate mysql secure installation for debian-baed systems | |
| # | |
| # - You can set a password for root accounts. | |
| # - You can remove root accounts that are accessible from outside the local host. | |
| # - You can remove anonymous-user accounts. | |
| # - You can remove the test database (which by default can be accessed by all users, even anonymous users), | |
| # and privileges that permit anyone to access databases with names that start with test_. |
| #!/usr/bin/bash | |
| # Usage: The main termux repository fix | |
| # Author: Ramonymous | |
| clear | |
| echo "Backuping the sources.list" | |
| mv $PREFIX/etc/apt/sources.list $PREFIX/etc/apt/sources.list.bak | |
| echo "Deleting sources.list" | |
| rm -rf $PREFIX/etc/apt/sources.list |
| #! /system/bin/bash | |
| Cachedir=/sdcard/android/data/com.kakaogames.moonlightgb/cache | |
| MSDir=/data/data/com.kakaogames.moonlightgb | |
| KGDeviceID=/data/data/com.kakaogames.moonlightgb/shared_prefs/KGDeviceID.xml | |
| echo "MS Guest Account Reset" | |
| #checking pid | |
| echo "Making sure if Moonlight Sculptur is Closed" |