1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
#-------------------------------------------#
# Fast Webpage Exchanger Configuration File #
#-------------------------------------------#
# the configuration of 1st host
[deodeo]
HostName = www.enjoy.ne.jp
LoginName = gm
Password = gmkun
SrcDir = /mnt/gm1/data/file/gms_page
DestDir = /public_html
IgnoreLocalDir = /mnt/gm1/data/file/gms_page/nifty
IgnoreLocalFile = /mnt/gm1/data/file/gms_page/upload_self_check.sh
# the configuration of 2nd host
[nifty]
HostName = mftp9.nifty.ne.jp
LoginName = gm
#Password = nifgm # if a password is not specified
weex asks for it on the terminal.
SrcDir = /mnt/gm1/data/file/gms_page/nifty
DestDir = /homepage
IgnoreLocalDir = {
/ignore/*/
/*/ignore/*/
/*/ignore/
/ignore/
}
# the configuration of 3rd host
# (for backupping data in HDD)
[backup]
HostName = gm1
LoginName = gm
Password = "gm#345$%@%"
SrcDir = /mnt/gm1/data
DestDir = /mnt/gm1/dvd/backup
IgnoreLocalDir = {
/mnt/gm1/data/file/midi
/mnt/gm1/data/file/mp3
}
# the configuration of 4th host
# (sample)
[sample]
HostName = 192.168.1.1
LoginName = gm
Password = sample
SrcDir = /home/gm/data
DestDir = /public_html
IgnoreLocalDir = /home/gm/data/temp/*/test
IgnoreLocalFile = {
/home/gm/data/nosend.html
temp*
}
IgnoreRemoteDir = /public_html/notouch/[1-9][A-Z][a-z]/
IgnoreRemoteFile= /public_html/data???
KeepRemoteDir = /public_html/noremove
PreservePermissionDir = {
.
*
}
ChangePermission = 700
ChangePermissionDir = /home/gm/data/prog[^ABC]
ConvToLower = False
RecordLog = true
OverwriteOK = T
Silent = F
Force = 0
Monochrome = FALSE
NestSpaces = 2
LogDetailLevel = 3
MaxRetryToSend = 4
FtpPassive = 1
ShowHiddenFiles = n
FollowSymlinks = yes
ChdirAtConnection = true
# the configuration of 5th-7th host
# You can have multiple web sites on one ftp account
# by the following technique.
[host1]
HostName = www.giem.ne.jp
LoginName = gm
Password = ViVaLiNuX
SrcDir = /home/gm/giemweb/one
DestDir = /one
IgnoreRemoteDir = {
/two
/three
}
[host2]
HostName = www.giem.ne.jp
LoginName = gm
Password = ViVaLiNuX
SrcDir = /home/gm/giemweb/two
DestDir = /two
IgnoreRemoteDir = {
/one
/three
}
[host3]
HostName = www.giem.ne.jp
LoginName = gm
Password = ViVaLiNuX
SrcDir = /home/gm/giemweb/three
DestDir = /three
IgnoreRemoteDir = {
/one
/two
}
# the configuration of default host
# (These would be the default values if not explicitly
# given in the specific section.)
[default]
IgnoreLocalFile = {
*~
*.tmp
*.bak
}
AsciiFile = *.htm
AsciiFile = *.html
AsciiFile = *.txt
|