部署可道雲網盤

Ubuntu系統部署可道雲網盤

配置清華源

清華源官網https://mirror.tuna.tsinghua.edu.cn/help/ubuntu/php

Ubuntu 的軟件源配置文件是html

/etc/apt/sources.list

配置apt源

cat > /etc/apt/sources.list << 'EOF'

deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
EOF

安裝必備的軟件

sudo apt install php7.4 php7.4-fpm php7.4-gd php7.4-curl php7.4-mbstring nginx unzip -y

建立nginx配置文件

sudo vim /etc/nginx/conf.d/kod.conf
		server {
			listen 80;
			server_name kod.oldboy.com;
			root /code;
			index index.php index.html;
		
			location ~ \.php$ {
				root /code;
				fastcgi_pass 127.0.0.1:9000;
				fastcgi_index index.php;
				fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
				include fastcgi_params;
			}
		}

修改php的監聽方式

sudo vim /etc/php/7.4/fpm/pool.d/www.conf
			listen = 127.0.0.1:9000

修改php的監聽方式

下載解壓網盤源碼

mkdir /code/
		wget http://static.kodcloud.com/update/download/kodexplorer4.40.zip
		sudo unzip kodexplorer4.40.zip -d /code/
		sudo chown -R www-data:www-data /code/

註釋掉nginx配置裏的網站路徑

sudo vim /etc/nginx/nginx.conf

註釋掉nginx網站路徑

啓動服務

sudo systemctl stop apache2.service 
sudo systemctl start nginx php7.4-fpm

頁面訪問

10.0.0.200

最後將服務器的ip地址映射到局域網

image-20210401211457379

相關文章
相關標籤/搜索