File Uploads to the WWW Server

Please use SFTP software to upload files to the WWW server of this service.
(For the account and password, please refer to the materials sent to you after your application.)

On Windows, you can use SFTP software such as the following:

WinSCP (SFTP protocol only)

FileZilla (SFTP protocol only)

On Mac, you can use SFTP clients such as the following:

FileZilla (SFTP protocol only)

About Access Restrictions

Restriction by Source IP Address

Place a .htaccess file in the target directory and write the restriction rules in it.
Example: To allow access only from on-campus (excluding the Event Network):
<RequireAll>
Require ip 131.112.0.0/16 172.16.0.0/12 10.0.0.0/11 10.255.0.0/16 202.242.160.0/19
Require not ip 131.112.213.0/24 10.0.0.0/15
</RequireAll>

Restriction by Account/Password (.htaccess)

In addition to the .htaccess file, you also need to prepare a separate file containing account/password information. (Specify the file path on the AuthUserFile line as a full path.)

  • Basic authentication

[.htaccess]
AuthUserFile /[any-directory]/.htpasswd
AuthName "foo directory"
AuthType Basic
require valid-user
[.htpasswd] 
account1:Base64-encoded password
account2:Base64-encoded password
 :

  • Digest authentication
    This may not be supported by some browsers, but it offers higher security than Basic authentication.

[.htaccess]
AuthUserFile /[any-directory]/.htdigest
AuthName "foo directory"
AuthType Digest
require valid-user
[.htpasswd] 
account1:password hash
account2:password hash
 :

Please prepare the authentication hashes for Basic/Digest authentication on your side.

About Redirects

Place a .htaccess file in the target directory and write the redirect rules in it.
Example: To redirect the entire site:
 RewriteEngine on
 RewriteRule ^(.*)$ http://[redirect-destination-URL]/$1 [R=301,L]

About cron

The cron of the WWW server is generally not available.
If it is necessary for a university-wide service or program, please consult us separately.

About Bot Blocking

The following bots, from which we have observed a high volume of access in the past, are blocked from accessing this service via WAF (Web Application Firewall):
Baiduspider, Bytespider