东江是惠州的母亲河。 在五十年代,长辈们来到东江边,喝东江的水,用勤劳的双手,开拓了一片幸福的生活。
这是我们长辈们跟东江的缘。
时间飞逝,就过了半个多世纪,也真是巧合,我又来了,在这里学习。
终于在2021年,住在东江边上的楼上,每天听着江水沙沙声,还有波浪的流光, 我下定了决心,决定在这里买一个小根据地。
也要在这里写写我与东江水的缘分,我的内心独白。
这是一个新的起点……
离轻轨站近的那个开发商陷入债务危机了,居然拖了一年多! Anyway...
我退而求其次,买了一稍远一点的!
各位朋友,好事多磨,终于今年如果盖楼的不再出意外的话, 国庆期间就能入住了!
等到桂花香来时,再去看看江流声。

本地服务

终于在 2025 年 3 月,入驻根据地啦!拖延了足足 5 个月,等待过程可真是漫长啊。
提供本地浏览 linux 内核代码服务:https://lxr.djyos.org:51643/
提供 scp 文件中转服务:https://scp.djyos.org:51643/

本人网站及相关科技公司面值13.5万可转债(含欠薪),打包转让,赠送写字楼公寓1套。大慈大悲的业内大老,请联系: 伍启步:183 1904 1997

The configuration layout for an Apache2 web server installation on Ubuntu systems is as follows:

/etc/apache2/
|-- apache2.conf
|       `--  ports.conf
|-- mods-enabled
|       |-- *.load
|       `-- *.conf
|-- conf-enabled
|       `-- *.conf
|-- sites-enabled
|       `-- *.conf
          
  • apache2.conf is the main configuration file. It puts the pieces together by including all remaining configuration files when starting up the web server.
  • ports.conf is always included from the main configuration file. It is used to determine the listening ports for incoming connections, and this file can be customized anytime.
  • Configuration files in the mods-enabled/, conf-enabled/ and sites-enabled/ directories contain particular configuration snippets which manage modules, global configuration fragments, or virtual host configurations, respectively.
  • They are activated by symlinking available configuration files from their respective *-available/ counterparts. These should be managed by using our helpers a2enmod, a2dismod, a2ensite, a2dissite, and a2enconf, a2disconf . See their respective man pages for detailed information.
  • The binary is called apache2 and is managed using systemd, so to start/stop the service use systemctl start apache2 and systemctl stop apache2, and use systemctl status apache2 and journalctl -u apache2 to check status. system and apache2ctl can also be used for service management if desired. Calling /usr/bin/apache2 directly will not work with the default configuration.
Document Roots

By default, Ubuntu does not allow access through the web browser to any file outside of those located in /var/www, public_html directories (when enabled) and /usr/share (for web applications). If your site is using a web document root located elsewhere (such as in /srv) you may need to whitelist your document root directory in /etc/apache2/apache2.conf.

The default Ubuntu document root is /var/www/html. You can make your own virtual hosts under /var/www.

Reporting Problems

Please use the ubuntu-bug tool to report bugs in the Apache2 package with Ubuntu. However, check existing bug reports before reporting a new bug.

Please report bugs specific to modules (such as PHP and others) to their respective packages, not to the web server itself.