-
-
Save todorok1/365579733cda2838cb9bed9d3268fe06 to your computer and use it in GitHub Desktop.
シンプルRPGチュートリアル第125回 Apacheのhttps.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Directory /usr/local/apache2/htdocs/SimpleRpg/> | |
| <IfModule mod_mime.c> | |
| RemoveType .gz | |
| AddEncoding gzip .gz | |
| # The correct MIME type for .data.gz would be application/octet-stream, but due to Safari bug https://bugs.webkit.org/show_bug.cgi?id=247421, it is preferable to use MIME Type application/gzip instead. | |
| #AddType application/octet-stream .data.gz | |
| AddType application/gzip .data.gz | |
| AddType application/wasm .wasm.gz | |
| AddType application/javascript .js.gz | |
| AddType application/octet-stream .symbols.json.gz | |
| RemoveType .br | |
| AddEncoding br .br | |
| AddType application/octet-stream .data.br | |
| AddType application/wasm .wasm.br | |
| AddType application/javascript .js.br | |
| AddType application/octet-stream .symbols.json.br | |
| # Insert additional code here | |
| AddEncoding gzip .unityweb | |
| </IfModule> | |
| </Directory> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment