在昨天的帖子中介绍了[如何在Ubuntu 18.04下安装Apache2、PHP7.2、MYSQL](https://steemit.com/linux/@oflyhigh/ubuntu-18-04-apache2-php7-2-mysql),完成安全后,我们略作设置并绑定域名就可以跑起网站啦。  (图源 :[pexels.com]( https://www.pexels.com/)) # 默认配置 但是默认情况下,网站的目录配置为: >`DocumentRoot /var/www/html` 而Apache2的用户和用户组为 >`export APACHE_RUN_USER=www-data` `export APACHE_RUN_GROUP=www-data` >`User ${APACHE_RUN_USER}` `Group ${APACHE_RUN_GROUP}` 也就是说,如果我们想运行多个站点,站点的用户和组都是`www-data`,这样有个风险就是,一旦一个站点被黑,那么上载恶意脚本后很容易黑掉其它站点。 # mpm-itk 模块 那么有没有办法已不同的用户运行虚拟主机呢?比如说a用户的虚拟主机程序用户和用户组都是a,而b用户的虚拟主机程序用户和用户组都是b,答案是使用mpm-itk 模块。 老一点的版本可能会使用以下指令安装模块: >`sudo apt-get install apache2-mpm-itk` 在Ubuntu 18.04下,上述指令无法安装mpm-itk,正确的指令为: >`sudo apt-get install libapache2-mpm-itk` 安装完成时会自动使能这个模块。 >Setting up libapache2-mpm-itk (2.4.7-04-1) ... apache2_invoke: Enable module mpm_itk 如果需要手动使能相关模块,可以使用如下指令: >`sudo a2enmod mpm_itk` 提示信息如下: >Considering dependency mpm_prefork for mpm_itk: Considering conflict mpm_event for mpm_prefork: Considering conflict mpm_worker for mpm_prefork: Module mpm_prefork already enabled Module mpm_itk already enabled # 创建站点 安装好这个mpm_itk模块后,我们创建个新站点(可以从默认站点配置文件来修改) >`cd /etc/apache2/sites-available` `sudo cp 000-default.conf mysite.conf` `sudo vi mysite.conf` 然后主要修改如下: >` ServerName mysite.com` ` <ifmodule mpm_itk_module>` ` AssignUserID mysite mysite` ` </ifmodule>` ` DocumentRoot /home/mysite/www` ` ErrorLog /home/mysite/logs/error.log` ` CustomLog /home/mysite/logs/access.log combined` 然后使用adduser添加用户: >`sudo adduser mysite` 登陆上述用户,创建对应目录和站点文件。 然后执行如下指令启动站点: >` sudo a2ensite mysite.conf` `sudo systemctl reload apache2` # 权限错误 按上述操作配置后,访问站点会提示 403 Forbidden 错误:  查看错误日志发现类似如下错误: >`[Tue Jul 17 00:46:08.773031 2018] [authz_core:error] [pid 12821] [client xxxxx:54251] AH01630: client denied by server configuration: /home/mysite/www/` `[Tue Jul 17 00:46:11.360338 2018] [authz_core:error] [pid 12821] [client xxxx:54251] AH01630: client denied by server configuration: /home/mysite/www/` 我一直以为是我libapache2-mpm-itk模块没有配置好,经过一整天的反复测试和调查后,才发现在apche2.conf中设置了如下访问限制。 ``` <Directory /> Options FollowSymLinks AllowOverride None Require all denied </Directory> <Directory /usr/share> AllowOverride None Require all granted </Directory> <Directory /var/www/> Options Indexes FollowSymLinks AllowOverride None Require all granted </Directory> ``` 也就是说除了` /var/www/`以及`/usr/share`以外的目录都是禁止访问的。知道了这点就很好解决啦,在我们的mysite.conf中运行访问我们的目录就可以啦。 ``` <Directory /home/mysite/www> Options Indexes FollowSymLinks AllowOverride None Require all granted </Directory> ``` 再来测试一下,耶,一切正常。 # 总结 现在我们就可以已独立的用户运行虚拟主机啦,这样做安全性更高,也更便于管理。是不是很简单? # 相关链接 * [Ubuntu 18.04 安装Apache2、PHP7.2、MYSQL](https://steemit.com/linux/@oflyhigh/ubuntu-18-04-apache2-php7-2-mysql) * [The Apache 2 ITK MPM](http://mpm-itk.sesse.net/)
author | oflyhigh |
---|---|
permlink | ubuntu-18-04-mpm-itk |
category | linux |
json_metadata | {"tags":["linux","apache","mpm-itk","security","cn"],"image":["https://cdn.steemitimages.com/DQmQZB76VdWfP5ciCSthhWEsSPs5D158T9cCAJKrvimFVSo/image.png","https://cdn.steemitimages.com/DQmP7LqieSY24TvHjP44WhBnRQxUxqZfN4KsGwESBfLb1Xx/image.png"],"links":["https://steemit.com/linux/@oflyhigh/ubuntu-18-04-apache2-php7-2-mysql","https://www.pexels.com/","http://mpm-itk.sesse.net/"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-07-17 05:38:27 |
last_update | 2018-07-17 05:38:27 |
depth | 0 |
children | 10 |
last_payout | 2018-07-24 05:38:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 42.301 HBD |
curator_payout_value | 7.489 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,129 |
author_reputation | 6,299,720,029,753,926 |
root_title | "Ubuntu 18.04 使用独立用户运行虚拟主机 (mpm-itk)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 64,951,893 |
net_rshares | 23,909,119,755,564 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
adm | 0 | 8,865,181,498,982 | 50% | ||
wongshiying | 0 | 141,756,816 | 100% | ||
mark-waser | 0 | 113,161,861,881 | 100% | ||
slowwalker | 0 | 2,373,029,073,088 | 23% | ||
deanliu | 0 | 1,265,984,350,277 | 100% | ||
lemooljiang | 0 | 62,956,025,719 | 12% | ||
ace108 | 0 | 344,296,836,983 | 25% | ||
laoyao | 0 | 34,990,307,911 | 100% | ||
somebody | 0 | 1,309,187,782,519 | 100% | ||
midnightoil | 0 | 125,505,780,611 | 100% | ||
xiaohui | 0 | 704,813,332,560 | 100% | ||
oflyhigh | 0 | 2,505,546,952,426 | 100% | ||
xiaokongcom | 0 | 1,799,556,344 | 100% | ||
yulan | 0 | 14,770,788,644 | 100% | ||
chinadaily | 0 | 224,942,673,843 | 100% | ||
helene | 0 | 751,642,193,284 | 100% | ||
ethansteem | 0 | 196,135,656,400 | 100% | ||
davidjkelley | 0 | 5,667,412,107 | 100% | ||
digital-wisdom | 0 | 62,167,952,169 | 100% | ||
ethical-ai | 0 | 20,481,977,615 | 100% | ||
jwaser | 0 | 23,856,430,009 | 100% | ||
damarth | 0 | 721,207,416 | 3% | ||
bwaser | 0 | 192,113,140 | 100% | ||
jianghao | 0 | 231,676,028 | 10% | ||
ellepdub | 0 | 1,787,778,175 | 100% | ||
herpetologyguy | 0 | 206,812,335,682 | 100% | ||
handyman | 0 | 192,999,816 | 100% | ||
strong-ai | 0 | 17,400,290,720 | 100% | ||
siniceku | 0 | 72,358,103 | 100% | ||
steemtruth | 0 | 2,980,597,468 | 10% | ||
redes | 0 | 1,315,573,461,102 | 26% | ||
lalala | 0 | 117,202,252,717 | 100% | ||
devilwsy | 0 | 2,220,695,469 | 100% | ||
janiceting | 0 | 2,218,210,018 | 100% | ||
abraomarcos | 0 | 2,060,538,537 | 100% | ||
lydiachan | 0 | 27,165,161,306 | 100% | ||
technoprogressiv | 0 | 13,193,582,648 | 100% | ||
dragon40 | 0 | 1,906,217,662 | 10% | ||
blackbunny | 0 | 103,836,990,304 | 100% | ||
bxt | 0 | 174,169,434,448 | 100% | ||
lingfei | 0 | 67,484,571,956 | 100% | ||
yyyy | 0 | 450,469,190 | 100% | ||
alexis555 | 0 | 2,130,919,652,990 | 30% | ||
austinsandersco | 0 | 724,623,915 | 70% | ||
teachblogger | 0 | 5,602,056,035 | 50% | ||
kingofdew | 0 | 44,974,609,297 | 100% | ||
emcvay | 0 | 176,887,735 | 10% | ||
wylo | 0 | 609,881,658 | 100% | ||
jkkim | 0 | 76,529,014 | 10% | ||
ebejammin | 0 | 5,812,195,333 | 100% | ||
cryptohustler | 0 | 34,988,416,680 | 100% | ||
exec | 0 | 83,769,566,432 | 100% | ||
eval | 0 | 793,450,320 | 100% | ||
speeding | 0 | 3,711,280,041 | 100% | ||
walkinharmony | 0 | 9,126,934,430 | 40% | ||
chingpherd | 0 | 5,523,790,040 | 100% | ||
asterix87 | 0 | 13,253,922,916 | 100% | ||
canbethisone | 0 | 17,148,339,463 | 50% | ||
abetterworld | 0 | 2,935,950,908 | 100% | ||
bien | 0 | 2,063,542,953 | 100% | ||
raili | 0 | 8,200,238,219 | 100% | ||
that1consultant | 0 | 302,353,392 | 100% | ||
sanzo | 0 | 345,094,818 | 100% | ||
davaowhenyo | 0 | 610,390,398 | 100% | ||
allenshayzar | 0 | 610,390,398 | 100% | ||
travelgirl | 0 | 44,131,851,774 | 37% | ||
raku | 0 | 609,061,897 | 100% | ||
resteeming | 0 | 610,787,288 | 100% | ||
ravenousappetite | 0 | 610,390,398 | 100% | ||
aabb | 0 | 12,268,144,367 | 100% | ||
catwomanteresa | 0 | 31,664,559,991 | 30% | ||
auntigormint | 0 | 537,652,272 | 100% | ||
mrliga | 0 | 17,981,731,227 | 100% | ||
sweethoney | 0 | 255,640,852 | 100% | ||
liangfengyouren | 0 | 1,352,409,552 | 50% | ||
jiangchen | 0 | 12,194,765,796 | 100% | ||
openledgerio | 0 | 402,857,663 | 66% | ||
lancy | 0 | 4,545,705,788 | 92% | ||
fr3eze | 0 | 52,533,407,627 | 36% | ||
skenan | 0 | 99,359,672,668 | 50% | ||
steemabuse | 0 | 432,433,947 | 71% | ||
bearpaw | 0 | 2,622,481,863 | 100% | ||
freedom-fighter | 0 | 610,390,398 | 100% | ||
technologynepal | 0 | 609,061,897 | 100% | ||
chenlocus | 0 | 1,245,326,122 | 40% | ||
davidke20 | 0 | 1,643,532,295 | 10% | ||
rosatravels | 0 | 47,235,322,951 | 20% | ||
kimph | 0 | 336,341,479 | 100% | ||
khalilad | 0 | 611,243,358 | 100% | ||
ms8988 | 0 | 602,448,519 | 100% | ||
xiaoshancun | 0 | 475,403,914 | 100% | ||
stakuza | 0 | 395,246,477 | 100% | ||
ikonik | 0 | 393,531,737 | 100% | ||
vfxness | 0 | 65,537,660 | 100% | ||
lemminon | 0 | 611,243,358 | 100% | ||
bobdos | 0 | 6,153,042,636 | 2.5% | ||
heyeshuang | 0 | 650,995,250 | 100% | ||
melvinlumacad | 0 | 3,628,891,392 | 100% | ||
lindalex | 0 | 160,193,610 | 50% | ||
razor80 | 0 | 609,809,305 | 100% | ||
fastiduos | 0 | 611,243,358 | 100% | ||
winniex | 0 | 4,787,230,716 | 10% | ||
rebecca80 | 0 | 198,716,190 | 100% | ||
nitro.live | 0 | 325,101,181 | 100% | ||
chaerin | 0 | 213,500,070 | 100% | ||
windowglass | 0 | 16,870,536,605 | 50% | ||
cnbuddy | 0 | 4,215,658,217 | 0.1% | ||
chann | 0 | 5,800,280,771 | 20% | ||
taos | 0 | 207,146,403 | 80% | ||
lebin | 0 | 22,241,335,996 | 5% | ||
itchyfeetdonica | 0 | 4,546,941,354 | 35% | ||
coindzs | 0 | 159,881,178 | 100% | ||
saury | 0 | 303,723,844 | 100% | ||
ewq | 0 | 129,233,116 | 3% | ||
maiyude | 0 | 3,753,894,671 | 10% | ||
steem.ace | 0 | 211,596,766 | 100% | ||
meixia | 0 | 3,235,817,515 | 100% | ||
historylover | 0 | 733,160,441 | 100% | ||
cn-naughty.boy | 0 | 642,008,684 | 3.1% | ||
btccurrency1 | 0 | 61,225,916 | 100% | ||
ethanlee | 0 | 12,096,439,157 | 100% | ||
fredo77200 | 0 | 962,097,886 | 100% | ||
fanso | 0 | 1,246,736,585 | 100% | ||
cn-cutie.pie | 0 | 955,294,762 | 4.73% | ||
cryptoknight27 | 0 | 604,891,607 | 100% | ||
abss | 0 | 90,029,266 | 11% | ||
khayziljoy | 0 | 61,164,108 | 100% | ||
hepeng.chn | 0 | 145,161,791 | 100% | ||
fishdd | 0 | 151,884,056 | 5% | ||
kiddady | 0 | 139,946,240 | 100% | ||
agoha | 0 | 219,577,510 | 50% | ||
xiaoyuanwmm | 0 | 1,019,987,927 | 100% | ||
bambugrove | 0 | 494,992,722 | 100% | ||
astros | 0 | 2,569,037,598 | 100% | ||
alijewel | 0 | 549,010,717 | 100% | ||
wglenz | 0 | 9,600,649,619 | 100% | ||
jlsycxy | 0 | 397,048,426 | 100% | ||
lkvictor2005 | 0 | 7,633,840,301 | 100% | ||
fushcarbon | 0 | -51,777,931 | -100% | ||
darwindelacruz | 0 | 191,789,898 | 100% | ||
flagfixer | 0 | 16,229,363,521 | 2% |
wow,,what a post..hope that everyone learn from here...
author | alex00 |
---|---|
permlink | re-oflyhigh-ubuntu-18-04-mpm-itk-20180717t055148280z |
category | linux |
json_metadata | {"tags":["linux"],"app":"steemit/0.1"} |
created | 2018-07-17 05:52:06 |
last_update | 2018-07-17 05:52:06 |
depth | 1 |
children | 0 |
last_payout | 2018-07-24 05:52:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 73,467,785 |
root_title | "Ubuntu 18.04 使用独立用户运行虚拟主机 (mpm-itk)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 64,952,867 |
net_rshares | 0 |
提到虚拟主机,又让我这个技术小白想起上半年为自己搭梯子,买虚拟主机什么的,熬了几夜 花了好长时间都没搞好的惨痛经历
author | antone |
---|---|
permlink | re-oflyhigh-ubuntu-18-04-mpm-itk-20180717t061009332z |
category | linux |
json_metadata | {"community":"busy","app":"busy/2.5.2","format":"markdown","tags":["linux"],"users":[],"links":[],"image":[]} |
created | 2018-07-17 06:10:09 |
last_update | 2018-07-17 06:10:09 |
depth | 1 |
children | 0 |
last_payout | 2018-07-24 06:10:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 1,083,737,624,439 |
root_title | "Ubuntu 18.04 使用独立用户运行虚拟主机 (mpm-itk)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 64,954,202 |
net_rshares | 31,931,638,564 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oflyhigh | 0 | 31,931,638,564 | 1% |
請收下我崇拜的眼光,每次看到O哥的技術文,只能默默的鼓掌,然後默默的飄走 
author | catwomanteresa |
---|---|
permlink | re-oflyhigh-ubuntu-18-04-mpm-itk-20180717t080933846z |
category | linux |
json_metadata | {"tags":["linux"],"app":"steemit/0.1","image":["https://cdn.steemitimages.com/DQmWTB5iKtorBRxJ3BPGYUYtUcwSJBFt9VXYSiiqNx1frDN/passby02.gif"]} |
created | 2018-07-17 08:09:33 |
last_update | 2018-07-17 08:11:18 |
depth | 1 |
children | 1 |
last_payout | 2018-07-24 08:09:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 144 |
author_reputation | 242,407,633,843,306 |
root_title | "Ubuntu 18.04 使用独立用户运行虚拟主机 (mpm-itk)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 64,963,513 |
net_rshares | 31,932,197,947 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oflyhigh | 0 | 31,932,197,947 | 1% |
飘得不错呀:)
author | oflyhigh |
---|---|
permlink | re-catwomanteresa-re-oflyhigh-ubuntu-18-04-mpm-itk-20180718t125950755z |
category | linux |
json_metadata | {"tags":["linux"],"app":"steemit/0.1"} |
created | 2018-07-18 12:59:54 |
last_update | 2018-07-18 12:59:54 |
depth | 2 |
children | 0 |
last_payout | 2018-07-25 12:59:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 6,299,720,029,753,926 |
root_title | "Ubuntu 18.04 使用独立用户运行虚拟主机 (mpm-itk)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,114,139 |
net_rshares | 0 |
@oflyhigh, 写得好好哇~~~ 
author | cn-cutie.pie |
---|---|
permlink | 20180717t060009497z-post |
category | linux |
json_metadata | {"tags":["cn"]} |
created | 2018-07-17 06:00:09 |
last_update | 2018-07-17 06:00:09 |
depth | 1 |
children | 0 |
last_payout | 2018-07-24 06:00:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 717,169,219,933 |
root_title | "Ubuntu 18.04 使用独立用户运行虚拟主机 (mpm-itk)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 64,953,439 |
net_rshares | 0 |
@oflyhigh, 要不是我膝盖上中了一箭,我的膝盖就送给你了!
author | cn-naughty.boy |
---|---|
permlink | 20180717t053906267z-post |
category | linux |
json_metadata | {"tags":["cn"]} |
created | 2018-07-17 05:39:06 |
last_update | 2018-07-17 05:39:06 |
depth | 1 |
children | 0 |
last_payout | 2018-07-24 05:39:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 803,970,857,060 |
root_title | "Ubuntu 18.04 使用独立用户运行虚拟主机 (mpm-itk)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 64,951,937 |
net_rshares | 0 |
@oflyhigh you were flagged by a worthless gang of trolls, so, I gave you an upvote to counteract it! Enjoy!!
author | flagfixer |
---|---|
permlink | flagfixer-re-oflyhighubuntu-18-04-mpm-itk |
category | linux |
json_metadata | "" |
created | 2018-07-17 20:16:24 |
last_update | 2018-07-17 20:16:24 |
depth | 1 |
children | 0 |
last_payout | 2018-07-24 20:16:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 2,148,467,197,579 |
root_title | "Ubuntu 18.04 使用独立用户运行虚拟主机 (mpm-itk)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,032,278 |
net_rshares | 0 |
很简单是没有啦,还是需要些基础的。
author | fr3eze |
---|---|
permlink | re-oflyhigh-ubuntu-18-04-mpm-itk-20180717t073552020z |
category | linux |
json_metadata | {"community":"busy","app":"busy/2.5.2","format":"markdown","tags":["linux"],"users":[],"links":[],"image":[]} |
created | 2018-07-17 07:35:54 |
last_update | 2018-07-17 07:35:54 |
depth | 1 |
children | 0 |
last_payout | 2018-07-24 07:35:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.015 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 17 |
author_reputation | 62,201,653,753,684 |
root_title | "Ubuntu 18.04 使用独立用户运行虚拟主机 (mpm-itk)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 64,960,752 |
net_rshares | 31,932,197,947 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oflyhigh | 0 | 31,932,197,947 | 1% |
author | jlsycxy |
---|---|
permlink | re-oflyhigh-ubuntu-18-04-mpm-itk-20180718t015712250z |
category | linux |
json_metadata | {"tags":["linux"],"app":"steemit/0.1"} |
created | 2018-07-18 01:50:21 |
last_update | 2018-07-18 01:50:21 |
depth | 1 |
children | 0 |
last_payout | 2018-07-25 01:50:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.052 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 10,919,118,367 |
root_title | "Ubuntu 18.04 使用独立用户运行虚拟主机 (mpm-itk)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,057,404 |
net_rshares | 32,324,098,489 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oflyhigh | 0 | 31,932,197,947 | 1% | ||
jlsycxy | 0 | 391,900,542 | 100% |
没觉得简单~~能不弄就不弄,看着就懒癌发作~
author | shine.wong |
---|---|
permlink | re-oflyhigh-ubuntu-18-04-mpm-itk-20180718t071311588z |
category | linux |
json_metadata | {"tags":["linux"],"app":"steemit/0.1"} |
created | 2018-07-18 07:13:15 |
last_update | 2018-07-18 07:13:15 |
depth | 1 |
children | 0 |
last_payout | 2018-07-25 07:13:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 1,329,335,530,903 |
root_title | "Ubuntu 18.04 使用独立用户运行虚拟主机 (mpm-itk)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,083,641 |
net_rshares | 0 |