惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
C
Cisco Blogs
Help Net Security
Help Net Security
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Scott Helme
Scott Helme
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
M
MIT News - Artificial intelligence
L
LINUX DO - 热门话题
I
InfoQ
GbyAI
GbyAI
NISL@THU
NISL@THU
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Engineering at Meta
Engineering at Meta
H
Hackread – Cybersecurity News, Data Breaches, AI and More
TaoSecurity Blog
TaoSecurity Blog
Simon Willison's Weblog
Simon Willison's Weblog
A
About on SuperTechFans
Spread Privacy
Spread Privacy
月光博客
月光博客
W
WeLiveSecurity
AWS News Blog
AWS News Blog
云风的 BLOG
云风的 BLOG
有赞技术团队
有赞技术团队
Security Latest
Security Latest
人人都是产品经理
人人都是产品经理
PCI Perspectives
PCI Perspectives
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Microsoft Azure Blog
Microsoft Azure Blog
Hugging Face - Blog
Hugging Face - Blog
S
SegmentFault 最新的问题
T
Troy Hunt's Blog
Martin Fowler
Martin Fowler
The Hacker News
The Hacker News
T
Tor Project blog
C
CERT Recently Published Vulnerability Notes
Apple Machine Learning Research
Apple Machine Learning Research
Stack Overflow Blog
Stack Overflow Blog
K
Kaspersky official blog
Cloudbric
Cloudbric
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
C
Cybersecurity and Infrastructure Security Agency CISA
T
Tailwind CSS Blog
D
DataBreaches.Net
Security Archives - TechRepublic
Security Archives - TechRepublic
T
Tenable Blog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
博客园 - Franky
L
LINUX DO - 最新话题
MyScale Blog
MyScale Blog

博客园 - OSSSME

网络学习(学堂在线) C/S和B/S 赞美创新,好酸啊。 上海马拉松网上报名网上报名名额已满 ⇒ 报名成功 强制关机后导致VBOX(4.2.16 r86992)的虚拟机不可使用问题的解决MEMO 纪念一下雅虎中国 - 关闭社区服务的通知截图 关于阿里云服务器无外网带宽服务器 【NEWS】 ADempiere发布ADempiere 3.8.0路线图【2013年7月28日】 OSSSME - 开源软件助力中小企业发展 iDempiere VS World iDempiere VS ADempiere 为Drupal7.22添加富编辑器 on Ubuntu 12.04 说说iDempiere = OSGi + ADempiere的OSGi 购买阿里云云服务器( 最小配置) 安装Drupal7.12升级至7.22 2013夏,iDempiere来了 - v1.0c Installers (Devina LTS Release) 2013-06-27 安装Redmine 2.3.0(Ubuntu 12.04 Server) 从源代码制作iDempiere Server安装软件(Ubuntu Desktop 12.04 LTS 64位) 用squid配置代理服务器(基于Ubuntu Server 12.04) iDempiere = OSGi + ADempiere 一款ERP&CRM&SCM系统、助力中小企业发展
使用万网+阿里云服务器(Apache)配置二级域名
OSSSME · 2013-08-22 · via 博客园 - OSSSME

1. 在万网域名解析中添加二级域名解析配置
    在下面的主机记录(RR)的栏位添加二级域名名称后点确定按钮即可。
    

    注:需要等一段时间才能生效,请留意万网域名解析列表的生效状态栏位。

2. 在阿里云服务器添加虚拟机
    进入/etc/apache2/sites-available,生成和二级域名同名的文件,内容概要如下:

    <VirtualHost *:80>
        ServerAdmin 你的邮箱
        ServerName 你的二级域名
        DocumentRoot /var/www
        ProxyPass / ajp://你的iDempiere服务器IP:8009/
        ProxyPassReverse / ajp://你的iDempiere服务器IP:8009/
    </VirtualHost>

    启动虚拟机,执行下述命令
        a2ensite 你的虚拟机文件名(二级域名文件)
        service apache2 reload