V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  diangdiang  ›  全部回复第 2 页 / 共 8 页
回复总数  154
1  2  3  4  5  6  7  8  
昨天打电话问了一下,北京 -> 武汉,社保需要在北京开 社保缴费记录证明
@davin 老哥 知道怎么 补交吗
@PortexMax
好的,谢谢老哥
离职后断缴了一个月的 可以补吗,不能补的话有什么影响呢
自顶 求别沉
楼主你好 工作经验半年的可以投吗
@wangtianfang998 已发送 麻烦楼主查收~
@wangtianfang998
官网无法投递简历 同学可以帮忙内推吗,直接把简历给你行吗🤣
<img src="https://i.loli.net/2019/02/23/5c714b3664d4d.jpg" alt="招银网络.jpg" title="招银网络.jpg" />
2019-02-23 20:43:38 +08:00
回复了 leechow 创建的主题 成都 成都招银网络科技云平台(云计算)开发社招
@leechow 想问一下楼主 18 年毕业的可以投吗,官网投递显示还是应届生 无法投递社招岗位🤣
@wangtianfang998 @chenym 你好想问一下 18 年毕业可以投吗,官网投递简历显示 还是应届生 不让投社招岗位(ಥ _ ಥ)
@ushuz 嗯 这里改了, 老哥帮忙看下一下 主题附言 部分的 最新配置文件还有什么问题吗 还是不行诶
@Lax 嗯 目前是这样配的 还是 有问题
mysite_nginx.conf 里的
location / {
uwsgi_pass django; # 这里是不是有问题,我看有的不是这样配的,但是换成 127.0.0.1:uwsgi 的端口 也不行诶
include /home/lee/code/toyinstagram/bookmarks/uwsgi_params; # the uwsgi_params file you installed
}
@shaoS 老哥帮忙看下这是咋回事
/var/nginx/error.log

2019/02/16 20:39:52 [notice] 4541#0: signal process started



/var/nginx/access.log

223.72.80.157 - - [16/Feb/2019:20:39:59 +0800] "GET /account/ HTTP/1.1" 404 200 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36"
多谢各位 热心回复,我自己看一下吧,应该就是配置的问题,
@shaoS 啥意思 老哥 感觉不是没有写权限的问题 access.log 有输出
@shaoS error.log 是空的
@qqxx520 还是不行 感觉一直是 nginx 和 uWSGI 没有通信,
我再看看吧,多谢老哥
@qqxx520
uwsgi.ini 和 nginx.conf 里 都用基于 ip 的 socket 可以吗,试了好像还是不行 23333,
都用基于 ip 的 socket 有什么配置要求吗,有没有例子之类的。

- mysite_nginx.conf
```
# the upstream component nginx needs to connect to
upstream django {
# server unix:///home/lee/code/toyinstagram/bookmarks/mysite.sock; # for a file socket
server http://127.0.0.1:9310; # for a web port socket (we'll use this first)
}

# configuration of the server
server {
# the port your site will be served on
listen 80;
# the domain name it will serve for
server_name 127.0.0.1; # substitute your machine's IP address or FQDN
charset utf-8;

# max upload size
client_max_body_size 75M; # adjust to taste

# Django media
location /media {
alias /home/lee/code/toyinstagram/bookmarks/media; # your Django project's media files - amend as required
}

location /static {
alias /home/lee/code/toyinstagram/bookmarks/account/static; # your Django project's static files - amend as required
}

# Finally, send all non-media requests to the Django server.
location / {
uwsgi_pass django;
include /home/lee/code/toyinstagram/bookmarks/uwsgi_params; # the uwsgi_params file you installed
}
}
```

usgi.ini
```
[uwsgi]
http = :9310
# the local unix socket file than commnuincate to Nginx
# socket = 0.0.0.0:9310
# the base directory (full path)
chdir = /home/lee/code/toyinstagram/bookmarks
# Django's wsgi file
wsgi-file = bookmarks/wsgi.py
# maximum number of worker processes
processes = 4
#thread numbers startched in each worker process
threads = 2

#monitor uwsgi status
stats = 127.0.0.1:9191
# clear environment on exit
vacuum = true
@qqxx520 不行啊 老哥🤣,貌似
```
http = :9310 和 socket = 0.0.0.0:9310 得有一个才行
2019-02-16 18:06:52 +08:00
回复了 alay9999 创建的主题 程序员 [V2EX技巧] 贴图和贴代码的方法(写给像我一样的小白)
<img src="https://i.imgur.com/LdIeQcd.jpg" class="embedded_image">
2019-02-16 18:05:32 +08:00
回复了 alay9999 创建的主题 程序员 [V2EX技巧] 贴图和贴代码的方法(写给像我一样的小白)
求助 要怎么贴才对呢,这样为啥不行
@debugjoker #300
1  2  3  4  5  6  7  8  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   813 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 18ms · UTC 22:28 · PVG 06:28 · LAX 15:28 · JFK 18:28
Developed with CodeLauncher
♥ Do have faith in what you're doing.