Quantcast
Channel: さんきゅう堂
Viewing all 111 articles
Browse latest View live

全国ライブカメラの旅 第1,370回


全国ライブカメラの旅 第1,371回

全国ライブカメラの旅 第1,372回

全国ライブカメラの旅 第1,373回

$
0
0

河口湖 山梨県南都留郡富士河口湖町
フルコントロールOK
機種 Canon VB-C60

0309

全国ライブカメラの旅 第1,374回

全国ライブカメラの旅 第1,375回

全国ライブカメラの旅 第1,376回

全国ライブカメラの旅 第1,377回


全国ライブカメラの旅 第1,378回

Can't create/write to file '/var/tmp/mysql

$
0
0
Can't create/write to file '/var/tmp/mysql.3rtEE4/#sql_1522_0.MYI' (Errcode: 2)
my.cnf追記
slave_load_tmpdir = /var/tmp/

全国ライブカメラの旅 第1,379回

全国ライブカメラの旅 第1,370回

全国ライブカメラの旅 第1,379回

全国ライブカメラの旅 第1,380回

全国ライブカメラの旅 第1,381回


全国ライブカメラの旅 第1,382回

全国ライブカメラの旅 第1,383回

全国ライブカメラの旅 第1,384回

全国ライブカメラの旅 第1,385回

$
0
0

岩殿山 山梨県大月市賑岡町畑倉
コントロール不可、3秒更新
機種 Panasonic BB-HCM735

0522

mod_deflate

$
0
0

Apache2.4.4以降.htaccess書き方が変わった様で忘れないように覚書
参考先 http://stackoverflow.com/questions/22475131/htaccess-filterprovider-giving-error-500

変更前

<IfModule mod_deflate.c>
    # Insert filter
    SetOutputFilter DEFLATE
    FilterDeclare Compression CONTENT_SET
    FilterProvider Compression DEFLATE Content-Type $text/plain
    FilterProvider Compression DEFLATE Content-Type $text/css
    FilterProvider Compression DEFLATE Content-Type $application/xhtml
    FilterProvider Compression DEFLATE Content-Type $application/xml
    FilterProvider Compression DEFLATE Content-Type $application/xhtml+xml
    FilterProvider Compression DEFLATE Content-Type $application/rss+xml
    FilterProvider Compression DEFLATE Content-Type $application/atom+xml
    FilterProvider Compression DEFLATE Content-Type $application/x-javascript
    FilterProvider Compression DEFLATE Content-Type $image/svg+xml
    FilterProvider Compression DEFLATE Content-Type $text/html
    FilterProvider Compression DEFLATE Content-Type $application/javascript
    FilterProvider Compression DEFLATE Content-Type $text/javascript
    FilterChain Compression
    <IfModule mod_setenvif.c>
        # Netscape 4.x has some problems...
        BrowserMatch ^Mozilla/4 gzip-only-text/html
        # Netscape 4.06-4.08 have some more problems
        BrowserMatch ^Mozilla/4\.0[678] no-gzip
        # MSIE masquerades as Netscape, but it is fine
        BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
        # Don't compress images/archives/music/video/etc
        SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
        SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary
        SetEnvIfNoCase Request_URI \.(?:avi|mov|mp3|mp4|rm|flv|swf|mp?g)$ no-gzip dont-vary
    </IfModule>
    <IfModule mod_headers.c>
        # Make sure proxies don't deliver the wrong content
	Header append Vary User-Agent env=!dont-vary
	Header append Vary Accept-Encoding env=!dont-vary
    </IfModule>
</IfModule>

変更後

<IfModule mod_deflate.c>
    # Insert filter
    SetOutputFilter DEFLATE
    FilterDeclare Compression CONTENT_SET
    FilterProvider Compression DEFLATE "%{Content_Type} = 'text/plain'"
    FilterProvider Compression DEFLATE "%{Content_Type} = 'text/css'"
    FilterProvider Compression DEFLATE "%{Content_Type} = 'application/xhtml'"
    FilterProvider Compression DEFLATE "%{Content_Type} = 'application/xml'"
    FilterProvider Compression DEFLATE "%{Content_Type} = 'application/xhtml+xml'"
    FilterProvider Compression DEFLATE "%{Content_Type} = 'application/rss+xml'"
    FilterProvider Compression DEFLATE "%{Content_Type} = 'application/atom+xml'"
    FilterProvider Compression DEFLATE "%{Content_Type} = 'application/x-javascript'"
    FilterProvider Compression DEFLATE "%{Content_Type} = 'image/svg+xml'"
    FilterProvider Compression DEFLATE "%{Content_Type} = 'text/html'"
    FilterProvider Compression DEFLATE "%{Content_Type} = 'application/javascript'"
    FilterProvider Compression DEFLATE "%{Content_Type} = 'text/javascript'"
    FilterChain Compression
    <IfModule mod_setenvif.c>
        # Netscape 4.x has some problems...
        BrowserMatch ^Mozilla/4 gzip-only-text/html
        # Netscape 4.06-4.08 have some more problems
        BrowserMatch ^Mozilla/4\.0[678] no-gzip
        # MSIE masquerades as Netscape, but it is fine
        BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
        # Don't compress images/archives/music/video/etc
        SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
        SetEnvIfNoCase Request_URI \.(?:exe|t?gz|zip|bz2|sit|rar)$ no-gzip dont-vary
        SetEnvIfNoCase Request_URI \.(?:avi|mov|mp3|mp4|rm|flv|swf|mp?g)$ no-gzip dont-vary
    </IfModule>
    <IfModule mod_headers.c>
        # Make sure proxies don't deliver the wrong content
	Header append Vary User-Agent env=!dont-vary
	Header append Vary Accept-Encoding env=!dont-vary
    </IfModule>
</IfModule>
Viewing all 111 articles
Browse latest View live