对这个《如何利用 GrahpQL 和代码生成器提高生产力》很感兴趣
我会一直使用 Ruby 写各种各样的代码,直到它开始要求添加静态类型
@Rei 正解
专门听了自己问的关于打包程序的问题。还是现场更容易听清楚
及时止损。说出承诺不兑现的人,不值得跟随。你的老板没有跟你一起工作的诚意
如果某个类型 include 的 module 非常多,而且还引入另一个文件的类呢
刚花 100 多块钱,买了 3 年的的 cheapssl 哀伤
#9 楼 @starshine 非 80 端口不清楚。不过我知道你的配置肯定缺少 proxy_set_header X-Forwarded-Proto https,楼主多尝试,成功后求分享经验
楼主参考这个网页的设置,关键点是 proxy_set_header X-Forwarded-Proto https; https://www.digitalocean.com/community/questions/error-too-many-redirect-on-nginx
I just had the exact same problem after enabling SSL. The issue for me was I have Rails set to config.force_ssl = true which relies on the proxy_set_header X-Forwarded-Proto https; header to know whether the request was over SSL or not. I didn't have that header to Rails would receive an SSL request thinking it wasn't with SSL which caused it to redirect to https.
Here's my working config:
upstream puma {
server unix:///home/deploy/apps/genus/shared/tmp/sockets/genus-puma.sock;
}
server {
listen 80;
listen 443 ssl;
server_name genusapp.com;
ssl_certificate /home/deploy/apps/genus/genusapp_com.pem;
ssl_certificate_key /home/deploy/apps/genus/genusapp_com.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers AES256+EECDH:AES256+EDH:!aNULL;
root /home/deploy/apps/genus/current/public;
access_log /home/deploy/apps/genus/current/log/nginx.access.log;
error_log /home/deploy/apps/genus/current/log/nginx.error.log info;
location ^~ /assets/ {
gzip_static on;
expires max;
add_header Cache-Control public;
}
try_files $uri/index.html $uri @puma;
location @puma {
proxy_set_header X-Forwarded-Proto https;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://puma;
}
error_page 500 502 503 504 /500.html;
client_max_body_size 10M;
keepalive_timeout 10;
}
支持楼主,郑州 rails 加油
放到 config/initialize 文件夹,即可
我一般需要命令行翻墙的时候会设置全局翻墙,就搞定了
nginx 的配置文件,里面有个 tryfile,你搜索下它的意思。调整一下$uri/index 的位置,或删除它,估计可以解决你的问题
我非常想让 ruby 代码能够在 windows 下顺利执行。如果是像 mruby 那样能随意镶嵌到其他程序里是我梦寐以求的。 但是,ruby 的 gem 很多都不是用纯 ruby 写的,或多或少依赖于其他的 c 语言库,这个时候,由于 windows 下没有像 mac 下 brew,或 ubuntu 下 apt-get 这样方便的工具。新手遇到此类问题是很难解决的。 其实,这样的问题,在 mac 下也有,装个 therubyracer 简直恶心死新手。
要我吧,我最爱翻墙查英文资料
#2 楼 @leomayleomay #3 楼 @msg7086 十分感谢二位。去掉等号就可以了
我下载过 mdx 格式的词典,然后分析格式,将每个单词的解释和发音 mp3 保存到了本地 sqlite。有了它不需要联网就可以查单词。楼主要不要?
我写错了。在第二个错误中,并不是多出了一个 one 的输出,而是多出了一整个 list 的输出
我工作了 2 年半,一直想考驾照,没时间。无奈,年前辞职,就是为了考驾照。工作之后,再去花大量时间去学东西,是很不容易的一件事
身为 C++ 程序员,看完根本笑不出来
https://ruby-china.org/wiki/mac-nginx-passenger-rails 你看看,是否在步骤二的时候选择了/opt/nginx 路径
默认安装到/opt 目录下,你估计忘了建软链接,应该自己手动建立软链接到/usr/bin 下
#1 楼 @southwolf 已查看 Windows Defender 历史记录,无论是隔离的项目、允许的项目和检测到的所有项目,都是空的。没有发现
竟然还有我的名字,激动的不能行啊。请问郑州本地有 Ruby 的工作吗?