1
abelyao 2015-08-31 19:00:48 +08:00
加个 HTTP 服务器把目录指定到 FTP 相同目录
|
2
abelyao 2015-08-31 19:01:16 +08:00
上面有歧义,应该是加个 HTTP 服务
|
3
zixianlei 2015-08-31 19:06:25 +08:00
要绑定域名吧。。
|
4
alexapollo 2015-08-31 19:07:23 +08:00
python3 -m http.server
|
5
jimzhong 2015-08-31 19:09:52 +08:00
装一个 HTTP 服务,比如 lighttpd , apache 等等
最简单的就是 python3 -m http.server |
6
lilydjwg 2015-08-31 19:11:39 +08:00
|
7
gamexg 2015-08-31 19:25:03 +08:00
除了上面的操作还需要备案
|
8
br00k 2015-08-31 19:36:08 +08:00
弄 nginx 吧
|
9
stupil 2015-08-31 19:51:40 +08:00
现在用的是什么 ?
|
10
zodiac1111 2015-08-31 19:58:37 +08:00
webfsd
|
12
cczuysh OP Welcome to nginx on Fedora!
This page is used to test the proper operation of the nginx HTTP server after it has been installed. If you can read this page, it means that the web server installed at this site is working properly. This is the default index.html page that is distributed with nginx on Fedora. It is located in /usr/share/nginx/html. You should now put your content in a location of your choice and edit the root configuration directive in the nginx configuration file /etc/nginx/nginx.conf. 然后怎么操作呢 |
13
cczuysh OP Apache Tomcat/8.0.24 安装了, If you're seeing this, you've successfully installed Tomcat. Congratulations!, HTTP 服务器把目录指定到 FTP 相同目录这个怎么操作呢
|
14
cczuysh OP 我在 cd /usr/share/nginx/html 这个目录下面建了一个文件夹 apps ,
然后再这里加了个映射 vi /etc/nginx/nginx.conf location /apps/ { root /var/public_ftp; #alias ; autoindex on; #autoindex_exact_size off; #autoindex_localtime on; } 添加用户和访问权限,然后就 403 了 useradd -d /var/public_ftp -M appImage chown appImage /var/public_ftp chmod 777 -R /var/public_ftp |
15
ys0290 2015-09-01 11:14:03 +08:00 via iPhone
web 默认配置啥也不用干,把 ftp 目录软链接到 web 目录下,删掉 index 文件
|
17
cczuysh OP @ys0290 我查了 403 应该是权限不够,我用 root 用户,然后把 /var/public_ftp 这个目录 /var 都 chmod 777 了 还是报 403.
|
18
tanyuxiang 2015-09-01 14:26:51 +08:00 via Android
ftp 和 web 统一用一个用户
|