#ifndef HOSTNAME
#define HOSTNAME "[www.hoge.co.jp]"
~~~~~~~~~~~~~~ WWW サーバのホスト名
/* the name of your organisation or WWW host. This is used for printing
at the top of the output */
#endif
#ifndef HOSTURL
#define HOSTURL "http://www3.smet.nasw.mhi.co.jp/"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ WWW サーバの URL
/* the URL of your host's home page, for linking to at the top of the
output; use "none" for no linking. */
#endif
#ifndef ANALOGDIR
#define ANALOGDIR "/usr/local/analog-4.11/"
~~~~~~~~~~~~~~~~~~~~~~~ analog の展開ディレクトリ
#endif
(snip)
#ifndef LOGFILE
#define LOGFILE "/usr/local/apache/logs/access_log"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 各自の環境に合わせて
/* The name of the default logfile. Can be a list, separated by commas
(but no spaces), and can include wild cards. */
#endif
(snip)
#ifndef OUTFILE
#define OUTFILE "/home2/www3/analog/index.html"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 解析結果の出力先ファイルを指定
|