|
36 | 36 | ############################################
|
37 | 37 | ## adjust memory limit
|
38 | 38 |
|
39 |
| - php_value memory_limit 256M |
| 39 | + php_value memory_limit 768M |
40 | 40 | php_value max_execution_time 18000
|
41 | 41 |
|
42 | 42 | ############################################
|
|
65 | 65 | SecFilterScanPOST Off
|
66 | 66 | </IfModule>
|
67 | 67 |
|
68 |
| -<IfModule mod_headers.c> |
69 |
| -############################################ |
70 |
| -## prevent clickjacking |
71 |
| - |
72 |
| - Header set X-Frame-Options SAMEORIGIN |
73 |
| -</IfModule> |
74 |
| - |
75 | 68 | <IfModule mod_deflate.c>
|
76 | 69 |
|
77 | 70 | ############################################
|
|
136 | 129 | RewriteRule .* - [L,R=405]
|
137 | 130 |
|
138 | 131 | ############################################
|
139 |
| -## always send 404 on missing files in these folders |
| 132 | +## redirect for mobile user agents |
140 | 133 |
|
141 |
| - RewriteCond %{REQUEST_URI} !^/pub/(media|js)/ |
| 134 | + #RewriteCond %{REQUEST_URI} !^/mobiledirectoryhere/.*$ |
| 135 | + #RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|opera mobile|palmos|webos|googlebot-mobile" [NC] |
| 136 | + #RewriteRule ^(.*)$ /mobiledirectoryhere/ [L,R=302] |
142 | 137 |
|
143 | 138 | ############################################
|
144 | 139 | ## never rewrite for existing files, directories and links
|
|
175 | 170 | </IfModule>
|
176 | 171 |
|
177 | 172 | ###########################################
|
178 |
| -## Deny access to release notes to prevent disclosure of the installed Magento version |
| 173 | +## Deny access to root files to hide sensitive application information |
| 174 | + RedirectMatch 404 /\.git |
179 | 175 |
|
180 |
| - <Files RELEASE_NOTES.txt> |
181 |
| - Order allow,deny |
182 |
| - Deny from all |
| 176 | + <Files composer.json> |
| 177 | + order allow,deny |
| 178 | + deny from all |
| 179 | + </Files> |
| 180 | + <Files composer.lock> |
| 181 | + order allow,deny |
| 182 | + deny from all |
| 183 | + </Files> |
| 184 | + <Files .gitignore> |
| 185 | + order allow,deny |
| 186 | + deny from all |
| 187 | + </Files> |
| 188 | + <Files .htaccess> |
| 189 | + order allow,deny |
| 190 | + deny from all |
| 191 | + </Files> |
| 192 | + <Files .htaccess.sample> |
| 193 | + order allow,deny |
| 194 | + deny from all |
| 195 | + </Files> |
| 196 | + <Files .php_cs> |
| 197 | + order allow,deny |
| 198 | + deny from all |
| 199 | + </Files> |
| 200 | + <Files .travis.yml> |
| 201 | + order allow,deny |
| 202 | + deny from all |
| 203 | + </Files> |
| 204 | + <Files CHANGELOG.md> |
| 205 | + order allow,deny |
| 206 | + deny from all |
| 207 | + </Files> |
| 208 | + <Files CONTRIBUTING.md> |
| 209 | + order allow,deny |
| 210 | + deny from all |
| 211 | + </Files> |
| 212 | + <Files CONTRIBUTOR_LICENSE_AGREEMENT.html> |
| 213 | + order allow,deny |
| 214 | + deny from all |
| 215 | + </Files> |
| 216 | + <Files COPYING.txt> |
| 217 | + order allow,deny |
| 218 | + deny from all |
| 219 | + </Files> |
| 220 | + <Files Gruntfile.js> |
| 221 | + order allow,deny |
| 222 | + deny from all |
| 223 | + </Files> |
| 224 | + <Files LICENSE.txt> |
| 225 | + order allow,deny |
| 226 | + deny from all |
| 227 | + </Files> |
| 228 | + <Files LICENSE_AFL.txt> |
| 229 | + order allow,deny |
| 230 | + deny from all |
| 231 | + </Files> |
| 232 | + <Files nginx.conf.sample> |
| 233 | + order allow,deny |
| 234 | + deny from all |
| 235 | + </Files> |
| 236 | + <Files package.json> |
| 237 | + order allow,deny |
| 238 | + deny from all |
| 239 | + </Files> |
| 240 | + <Files php.ini.sample> |
| 241 | + order allow,deny |
| 242 | + deny from all |
| 243 | + </Files> |
| 244 | + <Files README.md> |
| 245 | + order allow,deny |
| 246 | + deny from all |
183 | 247 | </Files>
|
184 | 248 |
|
185 |
| -############################################ |
| 249 | +################################ |
186 | 250 | ## If running in cluster environment, uncomment this
|
187 | 251 | ## http://developer.yahoo.com/performance/rules.html#etags
|
188 | 252 |
|
189 | 253 | #FileETag none
|
190 |
| - |
|
0 commit comments