①设置jexus 为服务
cd /lib/systemd/system/
sudo vi jexus.service
#注意 jexus 实际路径
[Unit]
Description=jexus
After=network.target
[Service]
Type=forking
ExecStart=/usr/jexus/jws start
ExecReload=/usr/jexus/jws restart
ExecStop=/usr/jexus/jws stop
PrivateTmp=true
[Install]
WantedBy=multi-user.target
三、设置开机启动
systemctl enable jexus.service
启动jexus服务
systemctl start jexus.service
停止jexus服务
systemctl stop jexus
重新启动服务
systemctl restart jexus.service
查看服务状态
systemctl status jexus.service
查看所有已启动的服务
systemctl list-units --type=service
参考 :https://www.cnblogs.com/xiaoyaodijun/p/9706525.html
②配置 jexus web 配置文件
cd /usr/jexus/siteconf
新增两个配置文件
######################
########################################
port=80
root=/ /home/web/Web1
hosts=* #OR your.com,*.your.com
NoLog=true
AppHost={CmdLine=dotnet /home/web/Web1/Web1.dll;AppRoot=/home/web/Web1;Port=0}
rewrite=^/.+?\.(asp|php|cgi|pl|sh|bash|dll)(\?.*|)$ /.deny->$1
rewrite=.*/editor/.+ /.deny->editor
#######################################################
############################################
######################
########################################
port=15000
root=/ /home/web/WebApi1
hosts=* #OR your.com,*.your.com
NoLog=true
AppHost={CmdLine=dotnet /home/web/WebApi1/WebApi1.dll;AppRoot=/home/web/WebApi1;Port=0}
rewrite=^/.+?\.(asp|php|cgi|pl|sh|bash|dll)(\?.*|)$ /.deny->$1
rewrite=.*/editor/.+ /.deny->editor
#######################################################
############################################
手机扫一扫
移动阅读更方便
你可能感兴趣的文章