- 进入你的
home目录
cd ~
- 编辑
.bashrc文件
| version: '3' | |
| services: | |
| mongo1: | |
| hostname: mongo1 | |
| container_name: localmongo1 | |
| image: mongo | |
| restart: always | |
| expose: | |
| - 27017 | |
| ports: |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body style="background:#fff;"> | |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/three.js/r68/three.min.js"></script> | |
| <canvas id="canvas"></canvas> | |
| <script id="jsbin-javascript"> |
| Possible Errors(可能的错误) | |
| The following rules point out potential errors in your CSS.(潜在错误) | |
| Beware of box model size(当心盒模型) | |
| Require properties appropriate for display (给display使用合适的属性) | |
| Disallow duplicate properties(不要使用重复属性) | |
| Disallow empty rules(不要使用空属性值) | |
| Require use of known properties(不要使用未知属性) | |
| Compatibility(兼容性) |
| { | |
| // JSHint Default Configuration File (as on JSHint website) | |
| // See http://jshint.com/docs/ for more details | |
| //jshint options document: [http://jshint.com/docs/options/#strict](http://jshint.com/docs/options/#strict) | |
| "maxerr" : 50, // {int} 超过{int}个错误后,停止检测错误 | |
| // Enforcing | |
| "bitwise" : false, // true: 禁止使用位逻辑符 (&, |, ^, ...) | |
| "camelcase" : false, // true: 变量名必须是驼峰风格 |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |